diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 6f760268e9..dcc4cbc85b 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -35,8 +35,6 @@ jobs: - name: Fetch domains run: pnpm vercel-scripts domains.txt app.buildwithfern.com --token=${{ secrets.VERCEL_TOKEN }} - - run: pnpm build - - name: Install Playwright Browsers run: pnpm exec playwright install --with-deps diff --git a/.gitignore b/.gitignore index 5b45f724ef..1a7ca0f1ae 100644 --- a/.gitignore +++ b/.gitignore @@ -67,3 +67,5 @@ deployment-url.txt # next.js analysis analyze + +test-results \ No newline at end of file diff --git a/fern/apis/fdr/definition/api/latest/endpoint.yml b/fern/apis/fdr/definition/api/latest/endpoint.yml index 685923dd4c..dbb542f8a5 100644 --- a/fern/apis/fdr/definition/api/latest/endpoint.yml +++ b/fern/apis/fdr/definition/api/latest/endpoint.yml @@ -91,7 +91,7 @@ types: properties: shape: optional statusCode: integer - name: optional + name: string examples: optional> ExampleEndpointCall: diff --git a/package.json b/package.json index 639ca1d53d..91ef4e5c68 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "test": "CI=true turbo test", "test:update": "CI=true turbo test -- -u", "playwright:test": "pnpm exec playwright test", - "playwright:build": "turbo --filter='playwright-*' build", + "playwright:build": "turbo --filter='playwright-*' --filter='@fern-ui/local-preview-bundle' build", "clean": "turbo clean", "codegen": "turbo codegen", "compile": "turbo compile", @@ -46,7 +46,6 @@ "@types/http-proxy": "^1.17.15", "@types/is-ci": "^3.0.4", "@types/js-yaml": "^4.0.9", - "@types/lodash-es": "4.17.12", "@types/node": "^18.7.18", "@typescript-eslint/eslint-plugin": "7.3.1", "@typescript-eslint/parser": "7.3.1", @@ -72,7 +71,6 @@ "js-yaml": "^4.1.0", "jsonc-parser": "~2.2.1", "lint-staged": "^13.0.3", - "lodash-es": "^4.17.21", "organize-imports-cli": "^0.10.0", "playwright": "^1.47.1", "prettier": "^3.3.2", @@ -106,6 +104,10 @@ "get-port": "^7.1.0" }, "packageManager": "pnpm@9.4.0", + "engines": { + "node": ">=18.18.0", + "pnpm": "9.4.0" + }, "nextBundleAnalysis": { "buildOutputDirectory": "packages/ui/docs-bundle/.next", "budget": 358400, diff --git a/packages/commons/react/react-commons/package.json b/packages/commons/react/react-commons/package.json index 8ad1f6bb1a..dc9a8affb3 100644 --- a/packages/commons/react/react-commons/package.json +++ b/packages/commons/react/react-commons/package.json @@ -31,15 +31,14 @@ }, "dependencies": { "@fern-api/ui-core-utils": "workspace:*", + "es-toolkit": "^1.24.0", "fastdom": "^1.0.12", "immer": "^9.0.15", - "lodash-es": "^4.17.21", "react": "^18.2.0", "ts-essentials": "^10.0.1" }, "devDependencies": { "@fern-platform/configs": "workspace:*", - "@types/lodash-es": "^4.17.12", "@types/node": "^18.7.18", "@types/react": "^18.0.20", "depcheck": "^1.4.3", diff --git a/packages/commons/react/react-commons/src/useDeepEquals.ts b/packages/commons/react/react-commons/src/useDeepEquals.ts index 0064ff2eaa..29c0ccf259 100644 --- a/packages/commons/react/react-commons/src/useDeepEquals.ts +++ b/packages/commons/react/react-commons/src/useDeepEquals.ts @@ -1,4 +1,4 @@ -import { isEqual } from "lodash-es"; +import { isEqual } from "es-toolkit/predicate"; import * as React from "react"; type UseEffectParams = Parameters; diff --git a/packages/fdr-sdk/package.json b/packages/fdr-sdk/package.json index 84600ccab4..f2e027ae2f 100644 --- a/packages/fdr-sdk/package.json +++ b/packages/fdr-sdk/package.json @@ -21,6 +21,10 @@ "types": "./dist/docs/index.d.ts", "default": "./dist/docs/index.js" }, + "./client": { + "types": "./dist/client/FdrClient.d.ts", + "default": "./dist/client/FdrClient.js" + }, "./client/types": { "types": "./dist/client/types.d.ts", "default": "./dist/client/types.js" @@ -38,6 +42,7 @@ "@fern-api/ui-core-utils": "workspace:*", "@ungap/structured-clone": "^1.2.0", "dayjs": "^1.11.11", + "es-toolkit": "^1.24.0", "fast-deep-equal": "^3.1.3", "form-data": "4.0.0", "formdata-node": "^6.0.3", @@ -49,9 +54,6 @@ "ts-essentials": "^10.0.1", "url-join": "5.0.0" }, - "peerDependencies": { - "lodash-es": ">=4" - }, "devDependencies": { "@babel/core": "^7.18.9", "@babel/preset-env": "^7.24.3", diff --git a/packages/fdr-sdk/src/__test__/fixtures.test.ts b/packages/fdr-sdk/src/__test__/fixtures.test.ts index 6de0118fcb..98bba3a872 100644 --- a/packages/fdr-sdk/src/__test__/fixtures.test.ts +++ b/packages/fdr-sdk/src/__test__/fixtures.test.ts @@ -79,7 +79,7 @@ function testNavigationConfigConverter(fixtureName: string): void { for (const api of Object.values(v2Apis)) { const keys: string[] = []; - await ApiDefinition.Transformer.keys((key) => keys.push(key)).apiDefinition(api); + ApiDefinition.Transformer.keys((key) => keys.push(key)).apiDefinition(api); expect(JSON.stringify(keys, undefined, 2)).toMatchFileSnapshot( `output/${fixtureName}/apiDefinitionKeys-${api.id}.json`, diff --git a/packages/fdr-sdk/src/__test__/output/assemblyai/apiDefinitionKeys-72c824a6-ca97-4592-a585-266e983022de.json b/packages/fdr-sdk/src/__test__/output/assemblyai/apiDefinitionKeys-72c824a6-ca97-4592-a585-266e983022de.json index 9152a3987b..cc5bc77606 100644 --- a/packages/fdr-sdk/src/__test__/output/assemblyai/apiDefinitionKeys-72c824a6-ca97-4592-a585-266e983022de.json +++ b/packages/fdr-sdk/src/__test__/output/assemblyai/apiDefinitionKeys-72c824a6-ca97-4592-a585-266e983022de.json @@ -1,155 +1,551 @@ [ + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/request", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/query/limit", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/query/status", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/query/created_on", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/query/before_id", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/query/after_id", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/query/throttled_only", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/request/object/property/audio_url", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/request/object", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/request", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/path/transcript_id", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/path/transcript_id", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/path/transcript_id", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/path/subtitle_format", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/query/chars_per_caption", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/path/transcript_id", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/path/transcript_id", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/path/transcript_id", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/query/words", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/path/transcript_id", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/request/object/property/prompt", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/0/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/1/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/2/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/3/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/4/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/5/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/6/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/7/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/request/object/property/answer_format", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/0/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/1/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/2/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/3/snippet/curl/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/request/object", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/request", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/6/504", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/1", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/2", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/3", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/4", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/5", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/6", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/request/object/property/answer_format", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/request/object", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/request", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/6/504", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/1", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/2", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/3", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/request/object/property/questions", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/request/object", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/request", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/request/object/property/answer_format", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/request/object", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/request", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/path/request_id", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/request/object/property/expires_in", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/request/object", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/request", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/response", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/0/400/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/0/400", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/1/401/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/1/401", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/2/404/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/2/404", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/3/429/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/3/429", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/4/500/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/4/500", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/5/503/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/5/503", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/6/504/error/shape", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/6/504", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/0/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/0", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/1/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/1", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/2/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/2", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/3/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/3", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/4/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/4", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/5/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/5", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/6/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/6", "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/7/snippet/curl/0", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/7", + "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken", "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/query/sample_rate", "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/query/word_boost", "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/query/encoding", @@ -157,23 +553,52 @@ "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/query/disable_partial_transcripts", "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/query/enable_extra_session_information", "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/requestHeader/Authentication", + "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/message/server/subscribe/body", + "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/message/server/subscribe", + "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/message/client/publish/body", + "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/message/client/publish", "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/example/0", + "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_files:UploadedFile/shape/object/property/upload_url", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_files:UploadedFile/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_files:UploadedFile/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_files:UploadedFile", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyNotification/shape/object/property/transcript_id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyNotification/shape/object/property/status", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyNotification/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyNotification/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyNotification", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioResponse/shape/object/property/status", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioResponse/shape/object/property/redacted_audio_url", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioResponse", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioStatus/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioStatus", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubtitleFormat/shape/enum/value/srt", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubtitleFormat/shape/enum/value/vtt", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubtitleFormat/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubtitleFormat", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchResponse/shape/object/property/id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchResponse/shape/object/property/total_count", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchResponse/shape/object/property/matches", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch/shape/object/property/count", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch/shape/object/property/timestamps", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch/shape/object/property/indexes", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchTimestamp/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchTimestamp", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Timestamp/shape/object/property/start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Timestamp/shape/object/property/end", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Timestamp/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Timestamp/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Timestamp", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape/object/property/language_code", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape/object/property/punctuate", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape/object/property/format_text", @@ -210,29 +635,48 @@ "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape/object/property/summary_type", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape/object/property/custom_topics", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape/object/property/topics", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryModel/shape/enum/value/informative", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryModel/shape/enum/value/conversational", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryModel/shape/enum/value/catchy", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryModel/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryModel", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryType/shape/enum/value/bullets", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryType/shape/enum/value/bullets_verbose", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryType/shape/enum/value/gist", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryType/shape/enum/value/headline", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryType/shape/enum/value/paragraph", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryType/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryType", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptBoostParam/shape/enum/value/low", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptBoostParam/shape/enum/value/default", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptBoostParam/shape/enum/value/high", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptBoostParam/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptBoostParam", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptCustomSpelling/shape/object/property/from", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptCustomSpelling/shape/object/property/to", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptCustomSpelling/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptCustomSpelling/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptCustomSpelling", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape/object/property/start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape/object/property/end", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape/object/property/words", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape/object/property/speaker", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubstitutionPolicy/shape/enum/value/entity_name", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubstitutionPolicy/shape/enum/value/hash", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubstitutionPolicy/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubstitutionPolicy", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactPiiAudioQuality/shape/enum/value/mp3", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactPiiAudioQuality/shape/enum/value/wav", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactPiiAudioQuality/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactPiiAudioQuality", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy/shape/enum/value/account_number", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy/shape/enum/value/banking_information", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy/shape/enum/value/blood_type", @@ -277,9 +721,13 @@ "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy/shape/enum/value/username", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy/shape/enum/value/vehicle_id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy/shape/enum/value/zodiac_sign", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SpeechModel/shape/enum/value/best", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SpeechModel/shape/enum/value/nano", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SpeechModel/shape/enum/value/conformer-2", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SpeechModel/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SpeechModel", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode/shape/enum/value/en", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode/shape/enum/value/en_au", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode/shape/enum/value/en_uk", @@ -382,12 +830,18 @@ "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode/shape/enum/value/cy", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode/shape/enum/value/yi", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode/shape/enum/value/yo", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptStatus/shape/enum/value/queued", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptStatus/shape/enum/value/processing", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptStatus/shape/enum/value/completed", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptStatus/shape/enum/value/error", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptStatus/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptStatus", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyStatus/shape/enum/value/completed", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyStatus/shape/enum/value/error", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyStatus/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyStatus", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape/object/property/id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape/object/property/language_model", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape/object/property/acoustic_model", @@ -444,22 +898,37 @@ "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape/object/property/speech_threshold", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape/object/property/throttled", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape/object/property/error", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionModelResult/shape/object/property/status", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionModelResult/shape/object/property/results", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionModelResult/shape/object/property/summary", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionModelResult/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionModelResult/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionModelResult", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult/shape/object/property/status", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult/shape/object/property/results", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult/shape/object/property/summary", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult/shape/object/property/severity_score_summary", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter/shape/object/property/gist", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter/shape/object/property/headline", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter/shape/object/property/summary", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter/shape/object/property/start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter/shape/object/property/end", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity/shape/object/property/entity_type", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity/shape/object/property/start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity/shape/object/property/end", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType/shape/enum/value/account_number", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType/shape/enum/value/banking_information", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType/shape/enum/value/blood_type", @@ -504,67 +973,113 @@ "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType/shape/enum/value/username", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType/shape/enum/value/vehicle_id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType/shape/enum/value/zodiac_sign", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape/object/property/start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape/object/property/end", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape/object/property/sentiment", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape/object/property/speaker", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Sentiment/shape/enum/value/POSITIVE", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Sentiment/shape/enum/value/NEUTRAL", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Sentiment/shape/enum/value/NEGATIVE", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Sentiment/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Sentiment", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResultLabelsItem/shape/object/property/relevance", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResultLabelsItem/shape/object/property/label", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResultLabelsItem/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResultLabelsItem/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResultLabelsItem", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResult/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResult/shape/object/property/labels", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResult/shape/object/property/timestamp", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResult/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResult/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResult", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabel/shape/object/property/label", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabel/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabel/shape/object/property/severity", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabel/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabel/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabel", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult/shape/object/property/labels", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult/shape/object/property/sentences_idx_start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult/shape/object/property/sentences_idx_end", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult/shape/object/property/timestamp", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SeverityScoreSummary/shape/object/property/low", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SeverityScoreSummary/shape/object/property/medium", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SeverityScoreSummary/shape/object/property/high", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SeverityScoreSummary/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SeverityScoreSummary/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SeverityScoreSummary", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightsResult/shape/object/property/status", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightsResult/shape/object/property/results", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightsResult/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightsResult/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightsResult", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult/shape/object/property/count", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult/shape/object/property/rank", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult/shape/object/property/timestamps", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord/shape/object/property/start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord/shape/object/property/end", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord/shape/object/property/speaker", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape/object/property/start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape/object/property/end", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape/object/property/words", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape/object/property/speaker", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse/shape/object/property/id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse/shape/object/property/audio_duration", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse/shape/object/property/sentences", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape/object/property/start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape/object/property/end", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape/object/property/words", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape/object/property/speaker", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse/shape/object/property/id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse/shape/object/property/audio_duration", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse/shape/object/property/paragraphs", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails/shape/object/property/limit", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails/shape/object/property/result_count", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails/shape/object/property/current_url", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails/shape/object/property/prev_url", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails/shape/object/property/next_url", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape/object/property/id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape/object/property/resource_url", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape/object/property/status", @@ -572,709 +1087,194 @@ "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape/object/property/completed", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape/object/property/audio_url", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape/object/property/error", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptList/shape/object/property/page_details", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptList/shape/object/property/transcripts", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptList/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptList/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptList", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AudioIntelligenceModelStatus/shape/enum/value/success", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AudioIntelligenceModelStatus/shape/enum/value/unavailable", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AudioIntelligenceModelStatus/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AudioIntelligenceModelStatus", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseMessage/shape/object/property/message_type", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseMessage/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseMessage/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseMessage", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage/shape/undiscriminatedUnion/variant/0", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage/shape/undiscriminatedUnion/variant/1", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage/shape/undiscriminatedUnion/variant/2", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage/shape/undiscriminatedUnion/variant/3", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage/shape/undiscriminatedUnion/variant/4", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage/shape/undiscriminatedUnion/variant/5", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeError/shape/object/property/error", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeError/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeError/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeError", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:MessageType/shape/enum/value/SessionBegins", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:MessageType/shape/enum/value/PartialTranscript", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:MessageType/shape/enum/value/FinalTranscript", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:MessageType/shape/enum/value/SessionInformation", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:MessageType/shape/enum/value/SessionTerminated", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:MessageType/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:MessageType", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscriptType/shape/enum/value/PartialTranscript", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscriptType/shape/enum/value/FinalTranscript", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscriptType/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscriptType", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscript/shape/undiscriminatedUnion/variant/0", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscript/shape/undiscriminatedUnion/variant/1", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscript/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscript", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionBegins/shape/object/property/message_type", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionBegins/shape/object/property/session_id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionBegins/shape/object/property/expires_at", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionBegins/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionBegins/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionBegins", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionInformation/shape/object/property/message_type", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionInformation/shape/object/property/audio_duration_seconds", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionInformation/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionInformation/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionInformation", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionTerminated/shape/object/property/message_type", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionTerminated/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionTerminated/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionTerminated", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape/object/property/audio_start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape/object/property/audio_end", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape/object/property/text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape/object/property/words", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape/object/property/created", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:PartialTranscript/shape/object/property/message_type", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:PartialTranscript/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:PartialTranscript/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:PartialTranscript", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:FinalTranscript/shape/object/property/message_type", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:FinalTranscript/shape/object/property/punctuated", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:FinalTranscript/shape/object/property/text_formatted", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:FinalTranscript/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:FinalTranscript/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:FinalTranscript", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word/shape/object/property/start", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word/shape/object/property/end", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word/shape/object/property/confidence", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word/shape/object/property/text", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioData/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioData", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ForceEndUtterance/shape/object/property/force_end_utterance", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ForceEndUtterance/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ForceEndUtterance/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ForceEndUtterance", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ConfigureEndUtteranceSilenceThreshold/shape/object/property/end_utterance_silence_threshold", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ConfigureEndUtteranceSilenceThreshold/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ConfigureEndUtteranceSilenceThreshold/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ConfigureEndUtteranceSilenceThreshold", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:TerminateSession/shape/object/property/terminate_session", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:TerminateSession/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:TerminateSession/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:TerminateSession", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioEncoding/shape/enum/value/pcm_s16le", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioEncoding/shape/enum/value/pcm_mulaw", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioEncoding/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioEncoding", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTemporaryTokenResponse/shape/object/property/token", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTemporaryTokenResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTemporaryTokenResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTemporaryTokenResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:PurgeLemurRequestDataResponse/shape/object/property/request_id", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:PurgeLemurRequestDataResponse/shape/object/property/request_id_to_purge", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:PurgeLemurRequestDataResponse/shape/object/property/deleted", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:PurgeLemurRequestDataResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:PurgeLemurRequestDataResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:PurgeLemurRequestDataResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseResponse/shape/object/property/request_id", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurSummaryResponse/shape/object/property/response", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurSummaryResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurSummaryResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurSummaryResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswerResponse/shape/object/property/response", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswerResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswerResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswerResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswer/shape/object/property/question", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswer/shape/object/property/answer", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswer/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswer/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswer", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurActionItemsResponse/shape/object/property/response", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurActionItemsResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurActionItemsResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurActionItemsResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurTaskResponse/shape/object/property/response", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurTaskResponse/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurTaskResponse/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurTaskResponse", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParamsContext/shape/undiscriminatedUnion/variant/0", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParamsContext/shape/undiscriminatedUnion/variant/1", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParamsContext/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParamsContext", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape/object/property/transcript_ids", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape/object/property/input_text", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape/object/property/context", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape/object/property/final_model", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape/object/property/max_output_size", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape/object/property/temperature", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionContext/shape/undiscriminatedUnion/variant/0", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionContext/shape/undiscriminatedUnion/variant/1", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionContext/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionContext", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion/shape/object/property/question", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion/shape/object/property/context", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion/shape/object/property/answer_format", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion/shape/object/property/answer_options", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion/shape/object", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurModel/shape/enum/value/default", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurModel/shape/enum/value/basic", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurModel/shape/enum/value/assemblyai/mistral-7b", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurModel/shape/enum/value/anthropic/claude-2-1", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurModel/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurModel", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:Streaming/shape/enum/value/pcm_s16le", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:Streaming/shape/enum/value/pcm_mulaw", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:Streaming/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:Streaming", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage/shape/undiscriminatedUnion/variant/0", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage/shape/undiscriminatedUnion/variant/1", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage/shape/undiscriminatedUnion/variant/2", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage/shape/undiscriminatedUnion/variant/3", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage/shape/undiscriminatedUnion/variant/4", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage/shape/undiscriminatedUnion/variant/5", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:sendMessage/shape/undiscriminatedUnion/variant/0", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:sendMessage/shape/undiscriminatedUnion/variant/1", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:sendMessage/shape/undiscriminatedUnion/variant/2", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:sendMessage/shape/undiscriminatedUnion/variant/3", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:sendMessage/shape", + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:sendMessage", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_:Error/shape/object/property/error", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_:Error/shape/object/property/status", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/request", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/response", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/0/400/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/1/401/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/2/404/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/3/429/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/4/500/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/5/503/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/6/504/error/shape", - "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/message/server/subscribe/body", - "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/message/client/publish/body", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioStatus/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchTimestamp/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioData/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/request/object", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/request/object", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/request/object", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/request/object", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/request/object", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/request/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_files:UploadedFile/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyNotification/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Timestamp/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptCustomSpelling/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionModelResult/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResultLabelsItem/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResult/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabel/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SeverityScoreSummary/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightsResult/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptList/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseMessage/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeError/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionBegins/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionInformation/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionTerminated/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:PartialTranscript/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:FinalTranscript/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ForceEndUtterance/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ConfigureEndUtteranceSilenceThreshold/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:TerminateSession/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTemporaryTokenResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:PurgeLemurRequestDataResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurSummaryResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswerResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswer/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurActionItemsResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurTaskResponse/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion/shape/object", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_:Error/shape/object", - "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/message/server/subscribe", - "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming/message/client/publish", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioStatus", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubtitleFormat/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchTimestamp", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryModel/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryType/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptBoostParam/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubstitutionPolicy/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactPiiAudioQuality/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SpeechModel/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptStatus/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyStatus/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Sentiment/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AudioIntelligenceModelStatus/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:MessageType/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscriptType/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscript/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioData", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioEncoding/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParamsContext/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionContext/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurModel/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:Streaming/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:sendMessage/shape", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/0/400", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/1/401", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/2/404", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/3/429", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/4/500", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/5/503", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/error/6/504", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/0", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/1", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/2", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/3", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/4", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/5", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/6", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/example/7", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit/request", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task/request", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary/request", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer/request", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems/request", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken/request", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_files:UploadedFile/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyNotification/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubtitleFormat", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Timestamp/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryModel", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SummaryType", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptBoostParam", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptCustomSpelling/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SubstitutionPolicy", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactPiiAudioQuality", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PiiPolicy", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SpeechModel", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptLanguageCode", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptStatus", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyStatus", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionModelResult/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:EntityType", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Sentiment", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResultLabelsItem/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResult/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabel/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SeverityScoreSummary/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightsResult/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptList/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AudioIntelligenceModelStatus", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseMessage/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeMessage", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeError/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:MessageType", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscriptType", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTranscript", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionBegins/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionInformation/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionTerminated/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:PartialTranscript/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:FinalTranscript/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ForceEndUtterance/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ConfigureEndUtteranceSilenceThreshold/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:TerminateSession/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:AudioEncoding", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTemporaryTokenResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:PurgeLemurRequestDataResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurSummaryResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswerResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswer/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurActionItemsResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurTaskResponse/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParamsContext", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionContext", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion/shape", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurModel", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:Streaming", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:receiveMessage", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_streaming:sendMessage", "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_:Error/shape", - "72c824a6-ca97-4592-a585-266e983022de/websocket/subpackage_streaming.streaming", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_files:UploadedFile", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptReadyNotification", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:RedactedAudioResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:WordSearchMatch", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Timestamp", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptOptionalParams", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptCustomSpelling", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptUtterance", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Transcript", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionModelResult", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelsResult", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Chapter", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:Entity", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentimentAnalysisResult", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResultLabelsItem", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TopicDetectionResult", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabel", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ContentSafetyLabelResult", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SeverityScoreSummary", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightsResult", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:AutoHighlightResult", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptWord", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptSentence", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:SentencesResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptParagraph", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:ParagraphsResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:PageDetails", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptListItem", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_transcripts:TranscriptList", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseMessage", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeError", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionBegins", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionInformation", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:SessionTerminated", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeBaseTranscript", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:PartialTranscript", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:FinalTranscript", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:Word", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ForceEndUtterance", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:ConfigureEndUtteranceSilenceThreshold", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:TerminateSession", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_realtime:RealtimeTemporaryTokenResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:PurgeLemurRequestDataResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurSummaryResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswerResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestionAnswer", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurActionItemsResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurTaskResponse", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurBaseParams", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_lemur:LemurQuestion", - "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_:Error", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_files.upload", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.list", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.submit", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.get", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.delete", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSubtitles", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getSentences", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getParagraphs", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.wordSearch", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_transcripts.getRedactedAudio", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.task", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.summary", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.questionAnswer", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.actionItems", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_lemur.purgeRequestData", - "72c824a6-ca97-4592-a585-266e983022de/endpoint/endpoint_realtime.createTemporaryToken" + "72c824a6-ca97-4592-a585-266e983022de/type-definition/type_:Error" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/assemblyai/apiDefinitions.json b/packages/fdr-sdk/src/__test__/output/assemblyai/apiDefinitions.json index 7ae06eede5..b3aa2aa614 100644 --- a/packages/fdr-sdk/src/__test__/output/assemblyai/apiDefinitions.json +++ b/packages/fdr-sdk/src/__test__/output/assemblyai/apiDefinitions.json @@ -46,6 +46,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -58,6 +59,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -70,6 +72,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -82,6 +85,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -94,6 +98,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -106,6 +111,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -117,6 +123,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -513,6 +520,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -525,6 +533,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -537,6 +546,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -549,6 +559,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -561,6 +572,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -573,6 +585,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -584,6 +597,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -890,6 +904,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -902,6 +917,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -914,6 +930,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -926,6 +943,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -938,6 +956,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -950,6 +969,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -961,6 +981,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -2005,6 +2026,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -2017,6 +2039,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -2029,6 +2052,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -2041,6 +2065,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -2053,6 +2078,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -2065,6 +2091,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -2076,6 +2103,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -3038,6 +3066,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -3050,6 +3079,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -3062,6 +3092,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -3074,6 +3105,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -3086,6 +3118,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -3098,6 +3131,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -3109,6 +3143,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -4101,6 +4136,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -4113,6 +4149,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -4125,6 +4162,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -4137,6 +4175,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -4149,6 +4188,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -4161,6 +4201,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -4172,6 +4213,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -4455,6 +4497,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -4467,6 +4510,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -4479,6 +4523,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -4491,6 +4536,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -4503,6 +4549,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -4515,6 +4562,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -4526,6 +4574,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -4873,6 +4922,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -4885,6 +4935,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -4897,6 +4948,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -4909,6 +4961,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -4921,6 +4974,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -4933,6 +4987,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -4944,6 +4999,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -5294,6 +5350,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -5306,6 +5363,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -5318,6 +5376,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -5330,6 +5389,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -5342,6 +5402,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -5354,6 +5415,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -5365,6 +5427,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -5661,6 +5724,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -5673,6 +5737,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -5685,6 +5750,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -5697,6 +5763,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -5709,6 +5776,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -5721,6 +5789,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -5732,6 +5801,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -5999,6 +6069,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6011,6 +6082,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6023,6 +6095,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6035,6 +6108,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -6047,6 +6121,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -6059,6 +6134,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -6070,6 +6146,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -6382,6 +6459,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6394,6 +6472,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6406,6 +6485,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6418,6 +6498,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -6430,6 +6511,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -6442,6 +6524,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -6453,6 +6536,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -6748,6 +6832,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6760,6 +6845,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6772,6 +6858,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6784,6 +6871,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -6796,6 +6884,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -6808,6 +6897,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -6819,6 +6909,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -7185,6 +7276,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -7197,6 +7289,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7209,6 +7302,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -7221,6 +7315,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -7233,6 +7328,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -7245,6 +7341,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -7256,6 +7353,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -7543,6 +7641,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -7555,6 +7654,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7567,6 +7667,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -7579,6 +7680,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -7591,6 +7693,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -7603,6 +7706,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -7614,6 +7718,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", @@ -7881,6 +7986,7 @@ "errors": [ { "description": "Bad request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -7893,6 +7999,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7905,6 +8012,7 @@ }, { "description": "Not found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -7917,6 +8025,7 @@ }, { "description": "Too many requests", + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -7929,6 +8038,7 @@ }, { "description": "An error occurred while processing the request", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -7941,6 +8051,7 @@ }, { "description": "Service unavailable", + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -7952,6 +8063,7 @@ }, { "description": "Gateway timeout", + "name": "Gateway Timeout", "statusCode": 504, "shape": { "type": "alias", diff --git a/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitionKeys-7bbd8b60-d410-43c1-bda4-3c0813a4fbb7.json b/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitionKeys-7bbd8b60-d410-43c1-bda4-3c0813a4fbb7.json index 29549e2c41..afcd2d6389 100644 --- a/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitionKeys-7bbd8b60-d410-43c1-bda4-3c0813a4fbb7.json +++ b/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitionKeys-7bbd8b60-d410-43c1-bda4-3c0813a4fbb7.json @@ -4,90 +4,264 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/query/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/query/limit", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/query/sorts", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/3/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/3/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/4", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/query/isLookUpOnly", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/request/object/property/billingEmail", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/request/object/property/isScimEnabled", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/request/object/property/name", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/request/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/query/provider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/query/type", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/query/deploymentId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/query/deploymentType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/query/executor", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/query/cloudProvider", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/3/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/3/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/4", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/query/names", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/query/provider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/query/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/query/limit", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/query/sorts", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/3/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/3/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/4", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/path/organizationId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/path/clusterId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/path/clusterId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/path/clusterId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/query/deploymentIds", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/query/names", @@ -95,223 +269,555 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/query/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/query/limit", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/query/sorts", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/3/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/3/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/4", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/path/organizationId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/3/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/3/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/4", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/path/deploymentId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/path/deploymentId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/path/deploymentId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/path/deploymentId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/request/object/property/isHibernating", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/request/object/property/overrideUntil", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/request/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/response", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/example/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeploymentHibernationOverride/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeploymentHibernationOverride/path/deploymentId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeploymentHibernationOverride/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeploymentHibernationOverride/example/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeploymentHibernationOverride", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/path/deploymentId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/query/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/query/limit", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/path/deploymentId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/request/object/property/description", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/request/object/property/type", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/request/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/path/deploymentId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/path/deployId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/path/deploymentId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/path/deployId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/request/object/property/description", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/request/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/path/deploymentId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/path/deployId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/request/object/property/dagTarballVersion", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/request/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/3/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/3/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/4", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/path/deploymentId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/path/deployId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/request/object/property/description", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/request/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/query/workspaceIds", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/query/names", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/query/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/query/limit", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/query/sorts", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/3/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/3/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/4", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/request/object/property/cicdEnforcedDefault", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/request/object/property/description", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/request/object/property/name", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/request/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/path/workspaceId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/path/workspaceId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/request/object/property/cicdEnforcedDefault", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/request/object/property/description", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/request/object/property/name", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/request/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/request", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/response", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/path/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/path/workspaceId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/0/400/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/0/400", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/1/401/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/1/401", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/2/403/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/2/403", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/3/404/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/3/404", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/4/500/error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/4/500", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/0/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/1/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/2/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/2", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/3/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/3", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/4/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/4", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/5/snippet/curl/0", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/5", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSupportPlan/shape/enum/value/TRIAL", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSupportPlan/shape/enum/value/BASIC", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSupportPlan/shape/enum/value/STANDARD", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSupportPlan/shape/enum/value/PREMIUM", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSupportPlan/shape/enum/value/BUSINESS_CRITICAL", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSupportPlan/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSupportPlan", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestProduct/shape/enum/value/HOSTED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestProduct/shape/enum/value/HYBRID", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestProduct/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestProduct", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem/shape/enum/value/name:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem/shape/enum/value/name:desc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem/shape/enum/value/createdAt:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem/shape/enum/value/createdAt:desc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem/shape/enum/value/updatedAt:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem/shape/enum/value/updatedAt:desc", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestType/shape/enum/value/HYBRID", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestDeploymentType/shape/enum/value/HYBRID", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestDeploymentType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestDeploymentType/shape/enum/value/STANDARD", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestDeploymentType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestDeploymentType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestExecutor/shape/enum/value/CELERY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestExecutor/shape/enum/value/KUBERNETES", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestExecutor/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestExecutor", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestCloudProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestCloudProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestCloudProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestCloudProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestCloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem/shape/enum/value/name:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem/shape/enum/value/name:desc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem/shape/enum/value/createdAt:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem/shape/enum/value/createdAt:desc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem/shape/enum/value/updatedAt:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem/shape/enum/value/updatedAt:desc", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem/shape/enum/value/name:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem/shape/enum/value/name:desc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem/shape/enum/value/createdAt:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem/shape/enum/value/createdAt:desc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem/shape/enum/value/updatedAt:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem/shape/enum/value/updatedAt:desc", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deploy:CreateDeployRequestType/shape/enum/value/IMAGE_AND_DAG", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deploy:CreateDeployRequestType/shape/enum/value/IMAGE_ONLY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deploy:CreateDeployRequestType/shape/enum/value/DAG_ONLY", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deploy:CreateDeployRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deploy:CreateDeployRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem/shape/enum/value/name:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem/shape/enum/value/name:desc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem/shape/enum/value/createdAt:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem/shape/enum/value/createdAt:desc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem/shape/enum/value/updatedAt:asc", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem/shape/enum/value/updatedAt:desc", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfileSubjectType/shape/enum/value/USER", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfileSubjectType/shape/enum/value/SERVICEKEY", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfileSubjectType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfileSubjectType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape/object/property/apiTokenName", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape/object/property/avatarUrl", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape/object/property/fullName", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape/object/property/id", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape/object/property/subjectType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape/object/property/username", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterCloudProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterCloudProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterCloudProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterCloudProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterCloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterStatus/shape/enum/value/CREATING", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterStatus/shape/enum/value/CREATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterStatus/shape/enum/value/CREATE_FAILED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterStatus/shape/enum/value/UPDATE_FAILED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterStatus/shape/enum/value/UPDATING", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterStatus/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterStatus", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterType/shape/enum/value/HYBRID", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape/object/property/cloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape/object/property/createdAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape/object/property/dbInstanceType", @@ -333,13 +839,24 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape/object/property/updatedAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape/object/property/vpcSubnetRange", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape/object/property/workspaceIds", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterK8STag/shape/object/property/key", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterK8STag/shape/object/property/value", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterK8STag/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterK8STag/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterK8STag", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterMetadata/shape/object/property/externalIPs", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterMetadata/shape/object/property/oidcIssuerUrl", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptionsProvider/shape/enum/value/AWS", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterMetadata/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterMetadata/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterMetadata", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptionsProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptionsProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptionsProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptionsProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptionsProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape/object/property/databaseInstances", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape/object/property/defaultDatabaseInstance", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape/object/property/defaultNodeInstance", @@ -354,15 +871,25 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape/object/property/nodeInstances", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape/object/property/provider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape/object/property/regions", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated/shape/object/property/clusters", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated/shape/object/property/limit", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated/shape/object/property/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated/shape/object/property/totalCount", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestCloudProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestCloudProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestCloudProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestCloudProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestCloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestType/shape/enum/value/HYBRID", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape/object/property/cloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape/object/property/dbInstanceType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape/object/property/k8sTags", @@ -373,11 +900,18 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape/object/property/type", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape/object/property/vpcSubnetRange", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape/object/property/workspaceIds", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestCloudProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestCloudProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestCloudProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestCloudProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestCloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestType/shape/enum/value/HYBRID", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape/object/property/cloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape/object/property/dbInstanceType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape/object/property/k8sTags", @@ -389,17 +923,28 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape/object/property/type", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape/object/property/vpcSubnetRange", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape/object/property/workspaceIds", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateClusterRequest/shape/undiscriminatedUnion/variant/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateClusterRequest/shape/undiscriminatedUnion/variant/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateClusterRequest/shape/undiscriminatedUnion/variant/2", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateClusterRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateClusterRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestExecutor/shape/enum/value/CELERY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestExecutor/shape/enum/value/KUBERNETES", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestExecutor/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestExecutor", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestSchedulerSize/shape/enum/value/SMALL", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestSchedulerSize/shape/enum/value/MEDIUM", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestSchedulerSize/shape/enum/value/LARGE", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestSchedulerSize/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestSchedulerSize", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestType/shape/enum/value/HYBRID", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestType/shape/enum/value/STANDARD", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape/object/property/astroRuntimeVersion", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape/object/property/clusterId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape/object/property/contactEmails", @@ -421,14 +966,23 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape/object/property/workerQueues", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape/object/property/workloadIdentity", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape/object/property/workspaceId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDeploymentRequest/shape/undiscriminatedUnion/variant/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDeploymentRequest/shape/undiscriminatedUnion/variant/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDeploymentRequest/shape/undiscriminatedUnion/variant/2", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDeploymentRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDeploymentRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestCloudProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestCloudProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestCloudProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestCloudProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestCloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestType/shape/enum/value/HYBRID", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape/object/property/cloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape/object/property/dbInstanceType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape/object/property/k8sTags", @@ -442,11 +996,18 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape/object/property/type", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape/object/property/vpcSubnetRange", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape/object/property/workspaceIds", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestExecutor/shape/enum/value/CELERY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestExecutor/shape/enum/value/KUBERNETES", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestExecutor/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestExecutor", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestType/shape/enum/value/HYBRID", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestType/shape/enum/value/STANDARD", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape/object/property/astroRuntimeVersion", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape/object/property/clusterId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape/object/property/contactEmails", @@ -462,21 +1023,35 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape/object/property/workerQueues", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape/object/property/workloadIdentity", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape/object/property/workspaceId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest/shape/object/property/isDefault", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest/shape/object/property/maxNodeCount", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest/shape/object/property/name", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest/shape/object/property/nodeInstanceType", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestCloudProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestCloudProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestCloudProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestCloudProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestCloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestExecutor/shape/enum/value/CELERY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestExecutor/shape/enum/value/KUBERNETES", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestExecutor/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestExecutor", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestSchedulerSize/shape/enum/value/SMALL", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestSchedulerSize/shape/enum/value/MEDIUM", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestSchedulerSize/shape/enum/value/LARGE", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestSchedulerSize/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestSchedulerSize", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestType/shape/enum/value/HYBRID", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestType/shape/enum/value/STANDARD", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape/object/property/astroRuntimeVersion", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape/object/property/cloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape/object/property/clusterId", @@ -500,12 +1075,19 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape/object/property/workerQueues", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape/object/property/workloadIdentity", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape/object/property/workspaceId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployStatus/shape/enum/value/INITIALIZED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployStatus/shape/enum/value/DEPLOYED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployStatus/shape/enum/value/FAILED", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployStatus/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployStatus", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployType/shape/enum/value/IMAGE_AND_DAG", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployType/shape/enum/value/IMAGE_ONLY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployType/shape/enum/value/DAG_ONLY", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape/object/property/airflowVersion", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape/object/property/astroRuntimeVersion", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape/object/property/createdAt", @@ -523,23 +1105,36 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape/object/property/type", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape/object/property/updatedAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape/object/property/updatedBySubject", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentCloudProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentCloudProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentCloudProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentCloudProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentCloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentExecutor/shape/enum/value/CELERY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentExecutor/shape/enum/value/KUBERNETES", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentExecutor/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentExecutor", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentSchedulerSize/shape/enum/value/SMALL", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentSchedulerSize/shape/enum/value/MEDIUM", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentSchedulerSize/shape/enum/value/LARGE", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentSchedulerSize/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentSchedulerSize", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus/shape/enum/value/CREATING", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus/shape/enum/value/DEPLOYING", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus/shape/enum/value/HEALTHY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus/shape/enum/value/UNHEALTHY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus/shape/enum/value/UNKNOWN", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus/shape/enum/value/HIBERNATING", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentType/shape/enum/value/HYBRID", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentType/shape/enum/value/STANDARD", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape/object/property/airflowVersion", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape/object/property/astroRuntimeVersion", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape/object/property/cloudProvider", @@ -595,34 +1190,66 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape/object/property/workloadIdentity", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape/object/property/workspaceId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape/object/property/workspaceName", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable/shape/object/property/isSecret", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable/shape/object/property/key", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable/shape/object/property/updatedAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable/shape/object/property/value", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariableRequest/shape/object/property/isSecret", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariableRequest/shape/object/property/key", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariableRequest/shape/object/property/value", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariableRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariableRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariableRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverride/shape/object/property/isActive", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverride/shape/object/property/isHibernating", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverride/shape/object/property/overrideUntil", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverride/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverride/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverride", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverrideRequest/shape/object/property/isHibernating", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverrideRequest/shape/object/property/overrideUntil", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverrideRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverrideRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverrideRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule/shape/object/property/description", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule/shape/object/property/hibernateAtCron", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule/shape/object/property/isEnabled", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule/shape/object/property/wakeAtCron", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpec/shape/object/property/override", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpec/shape/object/property/schedules", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpec/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpec/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpec", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpecRequest/shape/object/property/override", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpecRequest/shape/object/property/schedules", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpecRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpecRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpecRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatusNextEventType/shape/enum/value/HIBERNATE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatusNextEventType/shape/enum/value/WAKE", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatusNextEventType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatusNextEventType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus/shape/object/property/isHibernating", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus/shape/object/property/nextEventAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus/shape/object/property/nextEventType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus/shape/object/property/reason", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentInstanceSpecRequest/shape/object/property/au", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentInstanceSpecRequest/shape/object/property/replicas", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentInstanceSpecRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentInstanceSpecRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentInstanceSpecRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape/object/property/executors", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape/object/property/resourceQuotas", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape/object/property/runtimeReleases", @@ -630,20 +1257,41 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape/object/property/workerMachines", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape/object/property/workerQueues", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape/object/property/workloadIdentityOptions", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpec/shape/object/property/hibernationSpec", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpec/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpec/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpec", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpecRequest/shape/object/property/hibernationSpec", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpecRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpecRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpecRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingStatus/shape/object/property/hibernationStatus", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingStatus/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingStatus/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingStatus", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated/shape/object/property/deployments", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated/shape/object/property/limit", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated/shape/object/property/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated/shape/object/property/totalCount", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated/shape/object/property/deploys", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated/shape/object/property/limit", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated/shape/object/property/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated/shape/object/property/totalCount", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Error/shape/object/property/message", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Error/shape/object/property/requestId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Error/shape/object/property/statusCode", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Error/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Error/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Error", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape/object/property/id", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape/object/property/isDefault", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape/object/property/maxWorkerCount", @@ -651,12 +1299,20 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape/object/property/name", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape/object/property/nodePoolId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape/object/property/workerConcurrency", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec/shape/object/property/concurrency", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec/shape/object/property/cpu", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec/shape/object/property/ephemeralStorage", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec/shape/object/property/memory", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomainStatus/shape/enum/value/PENDING", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomainStatus/shape/enum/value/VERIFIED", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomainStatus/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomainStatus", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape/object/property/createdAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape/object/property/enforcedLogins", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape/object/property/id", @@ -664,9 +1320,14 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape/object/property/organizationId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape/object/property/status", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape/object/property/updatedAt", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePoolCloudProvider/shape/enum/value/AWS", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePoolCloudProvider/shape/enum/value/AZURE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePoolCloudProvider/shape/enum/value/GCP", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePoolCloudProvider/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePoolCloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape/object/property/cloudProvider", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape/object/property/clusterId", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape/object/property/createdAt", @@ -677,21 +1338,32 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape/object/property/nodeInstanceType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape/object/property/supportedAstroMachines", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape/object/property/updatedAt", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationPaymentMethod/shape/enum/value/CREDIT_CARD", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationPaymentMethod/shape/enum/value/INVOICE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationPaymentMethod/shape/enum/value/AWS_MARKETPLACE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationPaymentMethod/shape/enum/value/AZURE_MARKETPLACE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationPaymentMethod/shape/enum/value/GCP_MARKETPLACE", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationPaymentMethod/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationPaymentMethod", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationProduct/shape/enum/value/HOSTED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationProduct/shape/enum/value/HYBRID", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationProduct/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationProduct", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationStatus/shape/enum/value/ACTIVE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationStatus/shape/enum/value/INACTIVE", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationStatus/shape/enum/value/SUSPENDED", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationStatus/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationStatus", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationSupportPlan/shape/enum/value/TRIAL", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationSupportPlan/shape/enum/value/BASIC", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationSupportPlan/shape/enum/value/STANDARD", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationSupportPlan/shape/enum/value/PREMIUM", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationSupportPlan/shape/enum/value/BUSINESS_CRITICAL", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationSupportPlan/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationSupportPlan", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape/object/property/billingEmail", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape/object/property/createdAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape/object/property/createdBy", @@ -706,50 +1378,95 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape/object/property/trialExpiresAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape/object/property/updatedAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape/object/property/updatedBy", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated/shape/object/property/limit", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated/shape/object/property/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated/shape/object/property/organizations", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated/shape/object/property/totalCount", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderInstanceType/shape/object/property/cpu", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderInstanceType/shape/object/property/memory", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderInstanceType/shape/object/property/name", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderInstanceType/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderInstanceType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderInstanceType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderRegion/shape/object/property/bannedInstances", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderRegion/shape/object/property/limited", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderRegion/shape/object/property/name", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderRegion/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderRegion/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderRegion", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Range/shape/object/property/ceiling", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Range/shape/object/property/default", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Range/shape/object/property/floor", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Range/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Range/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Range", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceOption/shape/object/property/cpu", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceOption/shape/object/property/memory", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceOption/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceOption/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceOption", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceQuotaOptions/shape/object/property/defaultPodSize", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceQuotaOptions/shape/object/property/resourceQuota", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceQuotaOptions/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceQuotaOptions/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceQuotaOptions", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceRange/shape/object/property/ceiling", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceRange/shape/object/property/default", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceRange/shape/object/property/floor", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceRange/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceRange/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceRange", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape/object/property/airflowDatabaseMigration", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape/object/property/airflowVersion", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape/object/property/channel", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape/object/property/releaseDate", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape/object/property/stellarDatabaseMigration", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape/object/property/version", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachineName/shape/enum/value/SMALL", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachineName/shape/enum/value/MEDIUM", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachineName/shape/enum/value/LARGE", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachineName/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachineName", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachine/shape/object/property/name", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachine/shape/object/property/spec", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachine/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachine/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachine", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateClusterRequest/shape/discriminatedUnion/variant/DEDICATED", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateClusterRequest/shape/discriminatedUnion/variant/HYBRID", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateClusterRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateClusterRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest/shape/object/property/dbInstanceType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest/shape/object/property/k8sTags", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest/shape/object/property/name", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest/shape/object/property/nodePools", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest/shape/object/property/workspaceIds", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestExecutor/shape/enum/value/CELERY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestExecutor/shape/enum/value/KUBERNETES", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestExecutor/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestExecutor", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestSchedulerSize/shape/enum/value/SMALL", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestSchedulerSize/shape/enum/value/MEDIUM", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestSchedulerSize/shape/enum/value/LARGE", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestSchedulerSize/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestSchedulerSize", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestType/shape/enum/value/HYBRID", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestType/shape/enum/value/STANDARD", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape/object/property/contactEmails", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape/object/property/defaultTaskPodCpu", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape/object/property/defaultTaskPodMemory", @@ -769,15 +1486,27 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape/object/property/workerQueues", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape/object/property/workloadIdentity", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape/object/property/workspaceId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDeploymentRequest/shape/undiscriminatedUnion/variant/0", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDeploymentRequest/shape/undiscriminatedUnion/variant/1", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDeploymentRequest/shape/undiscriminatedUnion/variant/2", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDeploymentRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDeploymentRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridClusterRequest/shape/object/property/workspaceIds", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridClusterRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridClusterRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridClusterRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestExecutor/shape/enum/value/CELERY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestExecutor/shape/enum/value/KUBERNETES", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestExecutor/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestExecutor", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestType/shape/enum/value/HYBRID", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestType/shape/enum/value/STANDARD", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape/object/property/contactEmails", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape/object/property/description", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape/object/property/environmentVariables", @@ -791,19 +1520,31 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape/object/property/workerQueues", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape/object/property/workloadIdentity", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape/object/property/workspaceId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest/shape/object/property/id", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest/shape/object/property/isDefault", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest/shape/object/property/maxNodeCount", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest/shape/object/property/name", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest/shape/object/property/nodeInstanceType", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestExecutor/shape/enum/value/CELERY", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestExecutor/shape/enum/value/KUBERNETES", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestExecutor/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestExecutor", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestSchedulerSize/shape/enum/value/SMALL", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestSchedulerSize/shape/enum/value/MEDIUM", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestSchedulerSize/shape/enum/value/LARGE", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestSchedulerSize/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestSchedulerSize", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestType/shape/enum/value/DEDICATED", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestType/shape/enum/value/HYBRID", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestType/shape/enum/value/STANDARD", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestType/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestType", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape/object/property/contactEmails", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape/object/property/defaultTaskPodCpu", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape/object/property/defaultTaskPodMemory", @@ -823,6 +1564,9 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape/object/property/workerQueues", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape/object/property/workloadIdentity", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape/object/property/workspaceId", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName/shape/enum/value/A5", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName/shape/enum/value/A10", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName/shape/enum/value/A20", @@ -830,9 +1574,14 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName/shape/enum/value/A60", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName/shape/enum/value/A120", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName/shape/enum/value/A160", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachine/shape/object/property/concurrency", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachine/shape/object/property/name", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachine/shape/object/property/spec", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachine/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachine/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachine", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape/object/property/astroMachine", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape/object/property/id", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape/object/property/isDefault", @@ -843,9 +1592,15 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape/object/property/podCpu", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape/object/property/podMemory", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape/object/property/workerConcurrency", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueOptions/shape/object/property/maxWorkers", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueOptions/shape/object/property/minWorkers", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueOptions/shape/object/property/workerConcurrency", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueOptions/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueOptions/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueOptions", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine/shape/enum/value/A5", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine/shape/enum/value/A10", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine/shape/enum/value/A20", @@ -853,6 +1608,8 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine/shape/enum/value/A60", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine/shape/enum/value/A120", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine/shape/enum/value/A160", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape/object/property/astroMachine", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape/object/property/id", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape/object/property/isDefault", @@ -860,8 +1617,14 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape/object/property/minWorkerCount", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape/object/property/name", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape/object/property/workerConcurrency", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkloadIdentityOption/shape/object/property/label", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkloadIdentityOption/shape/object/property/role", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkloadIdentityOption/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkloadIdentityOption/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkloadIdentityOption", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape/object/property/cicdEnforcedDefault", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape/object/property/createdAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape/object/property/createdBy", @@ -872,777 +1635,14 @@ "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape/object/property/organizationName", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape/object/property/updatedAt", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape/object/property/updatedBy", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape/object", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkspacesPaginated/shape/object/property/limit", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkspacesPaginated/shape/object/property/offset", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkspacesPaginated/shape/object/property/totalCount", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkspacesPaginated/shape/object/property/workspaces", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/3/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/3/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/3/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/3/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/3/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/3/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/3/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/response", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/0/400/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/1/401/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/2/403/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/3/404/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/4/500/error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateClusterRequest/shape/discriminatedUnion/variant/DEDICATED", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateClusterRequest/shape/discriminatedUnion/variant/HYBRID", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/request/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/request/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/request/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/request/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/request/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/request/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/request/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/request/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterK8STag/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterMetadata/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariableRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverride/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverrideRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpec/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpecRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentInstanceSpecRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpec/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpecRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingStatus/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Error/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderInstanceType/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderRegion/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Range/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceOption/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceQuotaOptions/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceRange/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachine/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridClusterRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachine/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueOptions/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkloadIdentityOption/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkspacesPaginated/shape/object", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSupportPlan/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestProduct/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestDeploymentType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestExecutor/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestCloudProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deploy:CreateDeployRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfileSubjectType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterCloudProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterStatus/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptionsProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestCloudProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestCloudProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateClusterRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestExecutor/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestSchedulerSize/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDeploymentRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestCloudProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestExecutor/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestCloudProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestExecutor/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestSchedulerSize/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployStatus/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentCloudProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentExecutor/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentSchedulerSize/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatusNextEventType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomainStatus/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePoolCloudProvider/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationPaymentMethod/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationProduct/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationStatus/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationSupportPlan/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachineName/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestExecutor/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestSchedulerSize/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDeploymentRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestExecutor/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestExecutor/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestSchedulerSize/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/error/3/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/error/3/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/error/3/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/error/3/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/error/3/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeploymentHibernationOverride/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/error/3/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/error/3/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/0/400", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/1/401", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/2/403", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/3/404", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/error/4/500", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/0", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/1", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/2", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/3", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/4", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace/example/5", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace/request", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSupportPlan", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestProduct", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_organization:ListOrganizationsRequestSortsItem", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetClusterOptionsRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestDeploymentType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestExecutor", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_options:GetDeploymentOptionsRequestCloudProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_cluster:ListClustersRequestSortsItem", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deployment:ListDeploymentsRequestSortsItem", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_deploy:CreateDeployRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_workspace:ListWorkspacesRequestSortsItem", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfileSubjectType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterCloudProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterStatus", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterK8STag/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterMetadata/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptionsProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestCloudProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestCloudProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateClusterRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestExecutor", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestSchedulerSize", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDeploymentRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestCloudProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestExecutor", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestCloudProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestExecutor", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestSchedulerSize", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployStatus", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeployType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentCloudProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentExecutor", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentSchedulerSize", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentStatus", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariableRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverride/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverrideRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpec/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpecRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatusNextEventType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentInstanceSpecRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpec/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpecRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingStatus/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Error/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomainStatus", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePoolCloudProvider", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationPaymentMethod", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationProduct", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationStatus", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationSupportPlan", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderInstanceType/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderRegion/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Range/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceOption/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceQuotaOptions/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceRange/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachineName", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachine/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateClusterRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestExecutor", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestSchedulerSize", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDeploymentRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridClusterRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestExecutor", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestExecutor", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestSchedulerSize", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequestType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachineName", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachine/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueOptions/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequestAstroMachine", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkloadIdentityOption/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace/shape", + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkspacesPaginated/shape/object", "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkspacesPaginated/shape", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:BasicSubjectProfile", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Cluster", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterK8STag", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterMetadata", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClusterOptions", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ClustersPaginated", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAwsClusterRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateAzureClusterRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateDedicatedDeploymentRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateGcpClusterRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateHybridDeploymentRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateNodePoolRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:CreateStandardDeploymentRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deploy", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Deployment", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariable", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentEnvironmentVariableRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverride", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationOverrideRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSchedule", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpec", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationSpecRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentHibernationStatus", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentInstanceSpecRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentOptions", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpec", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingSpecRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentScalingStatus", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploymentsPaginated", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:DeploysPaginated", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Error", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:HybridWorkerQueueRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:MachineSpec", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ManagedDomain", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:NodePool", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Organization", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:OrganizationsPaginated", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderInstanceType", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ProviderRegion", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Range", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceOption", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceQuotaOptions", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:ResourceRange", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:RuntimeRelease", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:SchedulerMachine", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateClusterRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedClusterRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateDedicatedDeploymentRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridClusterRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateHybridDeploymentRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateNodePoolRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:UpdateStandardDeploymentRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerMachine", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueue", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueOptions", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkerQueueRequest", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkloadIdentityOption", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:Workspace", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkspacesPaginated", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.ListOrganizations", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.GetOrganization", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_organization.UpdateOrganization", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetClusterOptions", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_options.GetDeploymentOptions", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.ListClusters", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.CreateCluster", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.GetCluster", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.UpdateCluster", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_cluster.DeleteCluster", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.ListDeployments", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.CreateDeployment", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.GetDeployment", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeployment", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeployment", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.UpdateDeploymentHibernationOverride", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deployment.DeleteDeploymentHibernationOverride", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.ListDeploys", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.CreateDeploy", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.GetDeploy", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.UpdateDeploy", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.FinalizeDeploy", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_deploy.DeployRollback", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.ListWorkspaces", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.CreateWorkspace", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.GetWorkspace", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.UpdateWorkspace", - "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/endpoint/subpackage_workspace.DeleteWorkspace" + "7bbd8b60-d410-43c1-bda4-3c0813a4fbb7/type-definition/type_:WorkspacesPaginated" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitionKeys-a4030141-9ea5-4ac9-8d2b-f44b815980a8.json b/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitionKeys-a4030141-9ea5-4ac9-8d2b-f44b815980a8.json index b8c03b37fe..83091b07ea 100644 --- a/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitionKeys-a4030141-9ea5-4ac9-8d2b-f44b815980a8.json +++ b/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitionKeys-a4030141-9ea5-4ac9-8d2b-f44b815980a8.json @@ -1,175 +1,505 @@ [ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/query/scopeType", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/3/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/3/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/4", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/request/object/property/inviteeEmail", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/request/object/property/role", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/path/inviteId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/query/scopeTypes", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/query/includeDefaultRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/query/scopeTypes", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/query/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/query/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/query/sorts", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/request/object/property/description", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/request/object/property/name", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/request/object/property/permissions", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/request/object/property/restrictedWorkspaceIds", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/request/object/property/scopeType", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/path/customRoleId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/request/object/property/description", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/request/object/property/name", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/request/object/property/permissions", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/request/object/property/restrictedWorkspaceIds", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/path/customRoleId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/path/roleId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/query/names", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/query/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/query/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/query/sorts", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/request/object/property/description", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/request/object/property/memberIds", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/request/object/property/name", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/request/object/property/organizationRole", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/path/teamId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/path/teamId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/request/object/property/description", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/request/object/property/name", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/path/teamId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/path/teamId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/query/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/query/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/query/sorts", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/path/teamId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/request/object/property/memberIds", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/path/teamId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/path/memberId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/path/teamId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/request/object/property/deploymentRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/request/object/property/organizationRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/request/object/property/workspaceRoles", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/query/workspaceId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/query/deploymentId", @@ -177,12 +507,30 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/query/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/query/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/query/sorts", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/request/object/property/description", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/request/object/property/entityId", @@ -190,97 +538,271 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/request/object/property/role", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/request/object/property/tokenExpiryPeriodInDays", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/request/object/property/type", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/path/tokenId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/path/tokenId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/request/object/property/description", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/request/object/property/name", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/path/tokenId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/path/tokenId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/request/object/property/roles", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/path/tokenId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/query/workspaceId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/query/deploymentId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/query/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/query/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/query/sorts", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/3/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/3/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/4", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/path/userId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/path/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/path/userId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/request/object/property/deploymentRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/request/object/property/organizationRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/request/object/property/workspaceRoles", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/request/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/request", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/response", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/0/400/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/0/400", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/1/401/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/1/401", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/2/403/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/2/403", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/3/404/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/3/404", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/4/500/error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/4/500", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/0/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/0", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/1/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/1", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/2/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/2", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/3/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/3", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/4/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/4", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/5/snippet/curl/0", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/5", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_authorization:ListPermissionGroupsRequestScopeType/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_authorization:ListPermissionGroupsRequestScopeType/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_authorization:ListPermissionGroupsRequestScopeType/shape/enum/value/ORGANIZATION", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_authorization:ListPermissionGroupsRequestScopeType/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_authorization:ListPermissionGroupsRequestScopeType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_invite:CreateUserInviteRequestRole/shape/enum/value/ORGANIZATION_OWNER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_invite:CreateUserInviteRequestRole/shape/enum/value/ORGANIZATION_BILLING_ADMIN", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_invite:CreateUserInviteRequestRole/shape/enum/value/ORGANIZATION_MEMBER", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_invite:CreateUserInviteRequestRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_invite:CreateUserInviteRequestRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRoleTemplatesRequestScopeTypesItem/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRoleTemplatesRequestScopeTypesItem/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRoleTemplatesRequestScopeTypesItem/shape/enum/value/ORGANIZATION", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRoleTemplatesRequestScopeTypesItem/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRoleTemplatesRequestScopeTypesItem", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestScopeTypesItem/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestScopeTypesItem/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestScopeTypesItem/shape/enum/value/ORGANIZATION", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestScopeTypesItem/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestScopeTypesItem", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem/shape/enum/value/name:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem/shape/enum/value/name:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem/shape/enum/value/scopeType:asc", @@ -291,6 +813,8 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem/shape/enum/value/createdAt:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem/shape/enum/value/updatedAt:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem/shape/enum/value/updatedAt:desc", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem/shape/enum/value/name:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem/shape/enum/value/name:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem/shape/enum/value/description:asc", @@ -299,9 +823,13 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem/shape/enum/value/createdAt:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem/shape/enum/value/updatedAt:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem/shape/enum/value/updatedAt:desc", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:CreateTeamRequestOrganizationRole/shape/enum/value/ORGANIZATION_OWNER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:CreateTeamRequestOrganizationRole/shape/enum/value/ORGANIZATION_BILLING_ADMIN", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:CreateTeamRequestOrganizationRole/shape/enum/value/ORGANIZATION_MEMBER", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:CreateTeamRequestOrganizationRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:CreateTeamRequestOrganizationRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem/shape/enum/value/userId:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem/shape/enum/value/userId:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem/shape/enum/value/fullName:asc", @@ -310,9 +838,13 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem/shape/enum/value/username:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem/shape/enum/value/createdAt:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem/shape/enum/value/createdAt:desc", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:UpdateTeamRolesRequestOrganizationRole/shape/enum/value/ORGANIZATION_OWNER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:UpdateTeamRolesRequestOrganizationRole/shape/enum/value/ORGANIZATION_BILLING_ADMIN", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:UpdateTeamRolesRequestOrganizationRole/shape/enum/value/ORGANIZATION_MEMBER", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:UpdateTeamRolesRequestOrganizationRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:UpdateTeamRolesRequestOrganizationRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem/shape/enum/value/name:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem/shape/enum/value/name:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem/shape/enum/value/description:asc", @@ -323,9 +855,13 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem/shape/enum/value/updatedAt:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem/shape/enum/value/tokenStartAt:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem/shape/enum/value/tokenStartAt:desc", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:CreateApiTokenRequestType/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:CreateApiTokenRequestType/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:CreateApiTokenRequestType/shape/enum/value/ORGANIZATION", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:CreateApiTokenRequestType/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:CreateApiTokenRequestType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem/shape/enum/value/id:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem/shape/enum/value/id:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem/shape/enum/value/username:asc", @@ -336,12 +872,18 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem/shape/enum/value/createdAt:desc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem/shape/enum/value/updatedAt:asc", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem/shape/enum/value/updatedAt:desc", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:UpdateUserRolesRequestOrganizationRole/shape/enum/value/ORGANIZATION_OWNER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:UpdateUserRolesRequestOrganizationRole/shape/enum/value/ORGANIZATION_BILLING_ADMIN", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:UpdateUserRolesRequestOrganizationRole/shape/enum/value/ORGANIZATION_MEMBER", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:UpdateUserRolesRequestOrganizationRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:UpdateUserRolesRequestOrganizationRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenType/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenType/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenType/shape/enum/value/ORGANIZATION", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenType/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape/object/property/createdAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape/object/property/createdBy", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape/object/property/description", @@ -357,37 +899,64 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape/object/property/type", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape/object/property/updatedAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape/object/property/updatedBy", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRoleEntityType/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRoleEntityType/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRoleEntityType/shape/enum/value/ORGANIZATION", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRoleEntityType/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRoleEntityType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRole/shape/object/property/entityId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRole/shape/object/property/entityType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRole/shape/object/property/role", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRole/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated/shape/object/property/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated/shape/object/property/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated/shape/object/property/tokens", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated/shape/object/property/totalCount", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfileSubjectType/shape/enum/value/USER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfileSubjectType/shape/enum/value/SERVICEKEY", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfileSubjectType/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfileSubjectType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape/object/property/apiTokenName", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape/object/property/avatarUrl", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape/object/property/fullName", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape/object/property/id", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape/object/property/subjectType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape/object/property/username", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRoleScopeType/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRoleScopeType/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRoleScopeType/shape/enum/value/ORGANIZATION", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRoleScopeType/shape/enum/value/SYSTEM", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRoleScopeType/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRoleScopeType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole/shape/object/property/description", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole/shape/object/property/name", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole/shape/object/property/permissions", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole/shape/object/property/scopeType", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DeploymentRole/shape/object/property/deploymentId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DeploymentRole/shape/object/property/role", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DeploymentRole/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DeploymentRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DeploymentRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Error/shape/object/property/message", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Error/shape/object/property/requestId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Error/shape/object/property/statusCode", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Error/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Error/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Error", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape/object/property/expiresAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape/object/property/inviteId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape/object/property/invitee", @@ -395,15 +964,26 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape/object/property/organizationId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape/object/property/organizationName", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape/object/property/userId", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionEntry/shape/object/property/action", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionEntry/shape/object/property/description", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionEntry/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionEntry/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionEntry", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup/shape/object/property/description", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup/shape/object/property/name", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup/shape/object/property/permissions", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup/shape/object/property/scope", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleScopeType/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleScopeType/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleScopeType/shape/enum/value/ORGANIZATION", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleScopeType/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleScopeType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape/object/property/createdAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape/object/property/createdBy", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape/object/property/description", @@ -413,17 +993,27 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape/object/property/scopeType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape/object/property/updatedAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape/object/property/updatedBy", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplateScopeType/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplateScopeType/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplateScopeType/shape/enum/value/ORGANIZATION", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplateScopeType/shape/enum/value/SYSTEM", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplateScopeType/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplateScopeType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate/shape/object/property/description", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate/shape/object/property/name", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate/shape/object/property/permissions", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate/shape/object/property/scopeType", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermissionScopeType/shape/enum/value/DEPLOYMENT", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermissionScopeType/shape/enum/value/WORKSPACE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermissionScopeType/shape/enum/value/ORGANIZATION", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermissionScopeType/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermissionScopeType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape/object/property/createdAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape/object/property/createdBy", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape/object/property/description", @@ -434,20 +1024,33 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape/object/property/scopeType", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape/object/property/updatedAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape/object/property/updatedBy", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated/shape/object/property/defaultRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated/shape/object/property/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated/shape/object/property/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated/shape/object/property/roles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated/shape/object/property/totalCount", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRolesOrganizationRole/shape/enum/value/ORGANIZATION_OWNER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRolesOrganizationRole/shape/enum/value/ORGANIZATION_BILLING_ADMIN", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRolesOrganizationRole/shape/enum/value/ORGANIZATION_MEMBER", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRolesOrganizationRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRolesOrganizationRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRoles/shape/object/property/deploymentRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRoles/shape/object/property/organizationRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRoles/shape/object/property/workspaceRoles", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRoles/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRoles/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRoles", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamOrganizationRole/shape/enum/value/ORGANIZATION_OWNER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamOrganizationRole/shape/enum/value/ORGANIZATION_BILLING_ADMIN", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamOrganizationRole/shape/enum/value/ORGANIZATION_MEMBER", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamOrganizationRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamOrganizationRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape/object/property/createdAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape/object/property/createdBy", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape/object/property/deploymentRoles", @@ -461,26 +1064,42 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape/object/property/updatedAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape/object/property/updatedBy", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape/object/property/workspaceRoles", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember/shape/object/property/avatarUrl", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember/shape/object/property/createdAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember/shape/object/property/fullName", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember/shape/object/property/userId", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember/shape/object/property/username", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated/shape/object/property/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated/shape/object/property/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated/shape/object/property/teamMembers", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated/shape/object/property/totalCount", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated/shape/object/property/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated/shape/object/property/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated/shape/object/property/teams", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated/shape/object/property/totalCount", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserOrganizationRole/shape/enum/value/ORGANIZATION_OWNER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserOrganizationRole/shape/enum/value/ORGANIZATION_BILLING_ADMIN", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserOrganizationRole/shape/enum/value/ORGANIZATION_MEMBER", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserOrganizationRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserOrganizationRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserStatus/shape/enum/value/ACTIVE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserStatus/shape/enum/value/INACTIVE", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserStatus/shape/enum/value/PENDING", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserStatus/shape/enum/value/BANNED", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserStatus/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserStatus", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape/object/property/avatarUrl", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape/object/property/createdAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape/object/property/deploymentRoles", @@ -491,645 +1110,26 @@ "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape/object/property/updatedAt", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape/object/property/username", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape/object/property/workspaceRoles", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated/shape/object/property/limit", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated/shape/object/property/offset", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated/shape/object/property/totalCount", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated/shape/object/property/users", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated/shape/object", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRoleRole/shape/enum/value/WORKSPACE_OWNER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRoleRole/shape/enum/value/WORKSPACE_OPERATOR", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRoleRole/shape/enum/value/WORKSPACE_AUTHOR", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRoleRole/shape/enum/value/WORKSPACE_MEMBER", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRoleRole/shape/enum/value/WORKSPACE_ACCESSOR", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRoleRole/shape", + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRoleRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRole/shape/object/property/role", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRole/shape/object/property/workspaceId", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/3/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/3/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/response", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/0/400/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/1/401/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/2/403/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/3/404/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/4/500/error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/request/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRole/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DeploymentRole/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Error/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionEntry/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRoles/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated/shape/object", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRole/shape/object", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_authorization:ListPermissionGroupsRequestScopeType/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_invite:CreateUserInviteRequestRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRoleTemplatesRequestScopeTypesItem/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestScopeTypesItem/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:CreateTeamRequestOrganizationRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:UpdateTeamRolesRequestOrganizationRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:CreateApiTokenRequestType/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:UpdateUserRolesRequestOrganizationRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenType/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRoleEntityType/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfileSubjectType/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRoleScopeType/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleScopeType/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplateScopeType/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermissionScopeType/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRolesOrganizationRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamOrganizationRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserOrganizationRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserStatus/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRoleRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/error/3/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/error/3/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/0/400", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/1/401", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/2/403", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/3/404", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/error/4/500", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/0", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/1", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/2", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/3", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/4", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/example/5", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles/request", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_authorization:ListPermissionGroupsRequestScopeType", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_invite:CreateUserInviteRequestRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRoleTemplatesRequestScopeTypesItem", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestScopeTypesItem", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_role:ListRolesRequestSortsItem", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamsRequestSortsItem", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:CreateTeamRequestOrganizationRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:ListTeamMembersRequestSortsItem", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_team:UpdateTeamRolesRequestOrganizationRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:ListApiTokensRequestSortsItem", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_apiToken:CreateApiTokenRequestType", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:ListUsersRequestSortsItem", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_user:UpdateUserRolesRequestOrganizationRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenType", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRoleEntityType", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfileSubjectType", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRoleScopeType", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DeploymentRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Error/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionEntry/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleScopeType", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplateScopeType", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermissionScopeType", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRolesOrganizationRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRoles/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamOrganizationRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserOrganizationRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UserStatus", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRoleRole", "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRole/shape", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiToken", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokenRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:ApiTokensPaginated", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:BasicSubjectProfile", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DefaultRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:DeploymentRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Error", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Invite", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionEntry", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:PermissionGroup", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Role", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleTemplate", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RoleWithPermission", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:RolesPaginated", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:SubjectRoles", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:Team", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMember", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamMembersPaginated", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:TeamsPaginated", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:User", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:UsersPaginated", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_authorization.ListPermissionGroups", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.CreateUserInvite", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_invite.DeleteUserInvite", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoleTemplates", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.ListRoles", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.CreateCustomRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.UpdateCustomRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.DeleteCustomRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_role.GetCustomRole", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeams", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.CreateTeam", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.GetTeam", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeam", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.DeleteTeam", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.ListTeamMembers", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.AddTeamMembers", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.RemoveTeamMember", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_team.UpdateTeamRoles", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.ListApiTokens", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.CreateApiToken", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.GetApiToken", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiToken", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.DeleteApiToken", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.UpdateApiTokenRoles", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_apiToken.RotateApiToken", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.ListUsers", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.GetUser", - "a4030141-9ea5-4ac9-8d2b-f44b815980a8/endpoint/subpackage_user.UpdateUserRoles" + "a4030141-9ea5-4ac9-8d2b-f44b815980a8/type-definition/type_:WorkspaceRole" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitions.json b/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitions.json index a9456473c7..cc2485d6b2 100644 --- a/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitions.json +++ b/packages/fdr-sdk/src/__test__/output/astronomer/apiDefinitions.json @@ -128,6 +128,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -138,6 +139,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -148,6 +150,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -158,6 +161,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -417,6 +421,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -427,6 +432,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -437,6 +443,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -447,6 +454,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -457,6 +465,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -775,6 +784,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -785,6 +795,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -795,6 +806,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -805,6 +817,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -815,6 +828,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -1163,6 +1177,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -1173,6 +1188,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -1183,6 +1199,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -1193,6 +1210,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -1203,6 +1221,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -1563,6 +1582,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -1573,6 +1593,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -1583,6 +1604,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -1593,6 +1615,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -1985,6 +2008,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -1995,6 +2019,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -2005,6 +2030,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -2015,6 +2041,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -2284,6 +2311,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -2294,6 +2322,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -2304,6 +2333,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -2314,6 +2344,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -2324,6 +2355,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -2683,6 +2715,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -2693,6 +2726,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -2703,6 +2737,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -2713,6 +2748,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -2723,6 +2759,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -3028,6 +3065,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -3038,6 +3076,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -3048,6 +3087,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -3058,6 +3098,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -3068,6 +3109,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -3413,6 +3455,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -3423,6 +3466,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -3433,6 +3477,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -3443,6 +3488,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -3453,6 +3499,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -3792,6 +3839,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -3802,6 +3850,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -3812,6 +3861,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -3822,6 +3872,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -4138,6 +4189,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -4148,6 +4200,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -4158,6 +4211,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -4168,6 +4222,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -4608,6 +4663,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -4618,6 +4674,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -4628,6 +4685,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -4638,6 +4696,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -4648,6 +4707,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -5015,6 +5075,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -5025,6 +5086,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -5035,6 +5097,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -5045,6 +5108,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -5055,6 +5119,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -5554,6 +5619,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -5564,6 +5630,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -5574,6 +5641,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -5584,6 +5652,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -5594,6 +5663,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -6121,6 +6191,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6131,6 +6202,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6141,6 +6213,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -6151,6 +6224,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6161,6 +6235,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -6502,6 +6577,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6512,6 +6588,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6522,6 +6599,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -6532,6 +6610,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6542,6 +6621,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -6878,6 +6958,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6888,6 +6969,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6898,6 +6980,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -6908,6 +6991,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6918,6 +7002,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -7251,6 +7336,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -7261,6 +7347,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7271,6 +7358,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -7281,6 +7369,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -7291,6 +7380,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -7654,6 +7744,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -7664,6 +7755,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7674,6 +7766,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -7684,6 +7777,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -8012,6 +8106,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -8022,6 +8117,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -8032,6 +8128,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -8042,6 +8139,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -8052,6 +8150,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -8438,6 +8537,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -8448,6 +8548,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -8458,6 +8559,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -8468,6 +8570,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -8767,6 +8870,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -8777,6 +8881,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -8787,6 +8892,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -8797,6 +8903,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -8807,6 +8914,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -9110,6 +9218,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -9120,6 +9229,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -9130,6 +9240,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -9140,6 +9251,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -9150,6 +9262,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -9469,6 +9582,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -9479,6 +9593,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -9489,6 +9604,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -9499,6 +9615,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -9509,6 +9626,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -9818,6 +9936,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -9828,6 +9947,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -9838,6 +9958,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -9848,6 +9969,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -9858,6 +9980,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -18572,6 +18695,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -18582,6 +18706,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -18592,6 +18717,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -18602,6 +18728,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -18842,6 +18969,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -18852,6 +18980,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -18862,6 +18991,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -18872,6 +19002,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -18882,6 +19013,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -19176,6 +19308,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -19186,6 +19319,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -19196,6 +19330,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -19206,6 +19341,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -19216,6 +19352,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -19466,6 +19603,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -19476,6 +19614,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -19486,6 +19625,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -19496,6 +19636,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -19506,6 +19647,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -19841,6 +19983,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -19851,6 +19994,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -19861,6 +20005,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -19871,6 +20016,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -19881,6 +20027,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -20258,6 +20405,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -20268,6 +20416,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -20278,6 +20427,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -20288,6 +20438,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -20298,6 +20449,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -20713,6 +20865,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -20723,6 +20876,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -20733,6 +20887,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -20743,6 +20898,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -20753,6 +20909,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -21073,6 +21230,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -21083,6 +21241,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -21093,6 +21252,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -21103,6 +21263,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -21113,6 +21274,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -21355,6 +21517,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -21365,6 +21528,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -21375,6 +21539,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -21385,6 +21550,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -21395,6 +21561,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -21729,6 +21896,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -21739,6 +21907,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -21749,6 +21918,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -21759,6 +21929,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -21769,6 +21940,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -22133,6 +22305,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -22143,6 +22316,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -22153,6 +22327,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -22163,6 +22338,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -22173,6 +22349,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -22488,6 +22665,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -22498,6 +22676,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -22508,6 +22687,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -22518,6 +22698,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -22528,6 +22709,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -22853,6 +23035,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -22863,6 +23046,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -22873,6 +23057,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -22883,6 +23068,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -22893,6 +23079,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -23204,6 +23391,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -23214,6 +23402,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -23224,6 +23413,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -23234,6 +23424,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -23244,6 +23435,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -23547,6 +23739,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -23557,6 +23750,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -23567,6 +23761,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -23577,6 +23772,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -23587,6 +23783,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -23883,6 +24080,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -23893,6 +24091,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -23903,6 +24102,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -23913,6 +24113,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -23923,6 +24124,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -24224,6 +24426,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -24234,6 +24437,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -24244,6 +24448,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -24254,6 +24459,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -24264,6 +24470,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -24582,6 +24789,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -24592,6 +24800,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -24602,6 +24811,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -24612,6 +24822,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -24622,6 +24833,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -25027,6 +25239,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -25037,6 +25250,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -25047,6 +25261,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -25057,6 +25272,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -25067,6 +25283,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -25449,6 +25666,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -25459,6 +25677,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -25469,6 +25688,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -25479,6 +25699,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -25489,6 +25710,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -25816,6 +26038,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -25826,6 +26049,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -25836,6 +26060,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -25846,6 +26071,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -25856,6 +26082,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -26179,6 +26406,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -26189,6 +26417,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -26199,6 +26428,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -26209,6 +26439,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -26219,6 +26450,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -26528,6 +26760,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -26538,6 +26771,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -26548,6 +26782,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -26558,6 +26793,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -26568,6 +26804,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -26840,6 +27077,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -26850,6 +27088,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -26860,6 +27099,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -26870,6 +27110,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -26880,6 +27121,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -27216,6 +27458,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -27226,6 +27469,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -27236,6 +27480,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -27246,6 +27491,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -27256,6 +27502,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -27616,6 +27863,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -27626,6 +27874,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -27636,6 +27885,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -27646,6 +27896,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -27900,6 +28151,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -27910,6 +28162,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -27920,6 +28173,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -27930,6 +28184,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -27940,6 +28195,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -28283,6 +28539,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -28293,6 +28550,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -28303,6 +28561,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -28313,6 +28572,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -28323,6 +28583,7 @@ } }, { + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", diff --git a/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitionKeys-8099ff24-8ade-48d5-a54a-8d2d1831d806.json b/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitionKeys-8099ff24-8ade-48d5-a54a-8d2d1831d806.json index e85e03e6a5..0e2eea72f9 100644 --- a/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitionKeys-8099ff24-8ade-48d5-a54a-8d2d1831d806.json +++ b/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitionKeys-8099ff24-8ade-48d5-a54a-8d2d1831d806.json @@ -21,8 +21,17 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/request/object/property/tool_call", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/request/object/property/response_format", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/request/object/property/model_config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/response/stream/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request/object/property/session_id", @@ -45,8 +54,16 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request/object/property/tool_call", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request/object/property/response_format", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request/object/property/model_config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request/object/property/session_id", @@ -69,8 +86,17 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request/object/property/tool_call", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request/object/property/response_format", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request/object/property/environment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/response/stream/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request/object/property/session_id", @@ -93,8 +119,16 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request/object/property/tool_call", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request/object/property/response_format", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request/object/property/environment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request/object/property/session_id", @@ -117,8 +151,17 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request/object/property/tool_call", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request/object/property/response_format", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request/object/property/model_config_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/response/stream/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request/object/property/session_id", @@ -141,10 +184,25 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request/object/property/tool_call", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request/object/property/response_format", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request/object/property/model_config_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment_stream/response/stream/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment_stream/response", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment_stream/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment_stream/example/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment_stream", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment/response", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment/example/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request/object/property/session_id", @@ -165,8 +223,17 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request/object/property/logprobs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request/object/property/suffix", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request/object/property/model_config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/response/stream/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request/object/property/session_id", @@ -187,9 +254,18 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request/object/property/logprobs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request/object/property/suffix", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request/object/property/model_config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/example/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/example/2/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/example/2", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request/object/property/session_id", @@ -210,8 +286,17 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request/object/property/logprobs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request/object/property/suffix", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request/object/property/environment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/response/stream/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request/object/property/session_id", @@ -232,8 +317,16 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request/object/property/logprobs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request/object/property/suffix", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request/object/property/environment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request/object/property/session_id", @@ -254,8 +347,17 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request/object/property/logprobs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request/object/property/suffix", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request/object/property/model_config_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/response/stream/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request/object/property/session_id", @@ -276,105 +378,267 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request/object/property/logprobs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request/object/property/suffix", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request/object/property/model_config_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment_stream/response/stream/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment_stream/response", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment_stream/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment_stream/example/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment_stream", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment/response", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment/example/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/path/project_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/path/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/query/evaluatee_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/query/evaluator_aggregates", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/query/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/query/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/query/filter", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/query/user_filter", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/query/sort_by", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/query/order", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/request/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/request/object/property/directory_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/request/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/request/object/property/active_config_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/request/object/property/directory_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/query/evaluation_aggregates", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/request/object/property/type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/request/object/property/class", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/request/object/property/values", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/query/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/query/size", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/path/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/request/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/request/object/property/description", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/request/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/request/object/property/description", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/path/dataset_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/query/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/query/size", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/path/dataset_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/query/evaluator_aggregates", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/query/evaluatee_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/query/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/query/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/query/evaluatee_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/path/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/request/object/property/config_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/request/object/property/evaluator_ids", @@ -382,31 +646,71 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/request/object/property/provider_api_keys", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/request/object/property/hl_generated", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/request/object/property/name", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/path/evaluation_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/query/evaluatee_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/request/object/property/datapoint_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/request/object/property/log", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/path/evaluation_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/query/evaluatee_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/request/object/property/log_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/request/object/property/evaluator_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/request/object/property/result", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/request/object/property/error", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/request/object/property/status", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/request/object/property/evaluator_ids", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/request/object/property/evaluator_version_ids", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/query/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/query/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/query/start_date", @@ -414,10 +718,22 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/query/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/query/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/query/evaluatee_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request/object/property/arguments_type", @@ -425,14 +741,33 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request/object/property/code", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request/object/property/model_config", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request/object/property/type", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/request/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/request/object/property/description", @@ -440,10 +775,25 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/request/object/property/return_type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/request/object/property/code", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/request/object/property/model_config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/query/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/query/search", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/query/metadata_search", @@ -452,22 +802,60 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/query/end_date", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/query/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/query/page", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/query/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/query/reference_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request/object/property/provider", @@ -487,105 +875,232 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request/object/property/chat_template", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request/object/property/endpoint", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request/object/property/tools", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/request/object/property/config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/query/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/query/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/query/size", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/query/environment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/path/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/query/environment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/path/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/path/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/request/object/property/config_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/request/object/property/environments", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/request/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/request", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/path/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/path/environment_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/error/0/422/error/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/error/0/422", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/example/0/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/example/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/example/1/snippet/curl/0", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/example/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolChoice/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolChoice/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolChoice/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolCall/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolCall/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolCall/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolCall", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolChoice/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolChoice/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolChoice/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolCall/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolCall/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolCall/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolCall", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolChoice/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolChoice/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolChoice/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolCall/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolCall/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolCall/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolCall", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolChoice/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolChoice/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolChoice/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolCall/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolCall/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolCall/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolCall", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolChoice/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolChoice/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolChoice/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolCall/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolCall/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolCall/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolCall", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolChoice/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolChoice/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolChoice/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolCall/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolCall/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolCall/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolCall", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_datasets:Request/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_datasets:Request/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_datasets:Request/shape/undiscriminatedUnion/variant/2", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_datasets:Request/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_datasets:Request", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_evaluations:CreateEvaluationResultLogRequestResult/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_evaluations:CreateEvaluationResultLogRequestResult/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_evaluations:CreateEvaluationResultLogRequestResult/shape/undiscriminatedUnion/variant/2", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_evaluations:CreateEvaluationResultLogRequestResult/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_evaluations:CreateEvaluationResultLogRequestResult", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackRequest/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackRequest/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackResponse/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackResponse/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogRequest/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogRequest/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogResponse/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogResponse/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestStop/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestStop/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestStop/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestStop", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestToolsItem/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestToolsItem/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestToolsItem/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestToolsItem", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ModelConfigsSerializeRequest/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ModelConfigsSerializeRequest/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ModelConfigsSerializeRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ModelConfigsSerializeRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape/object/property/other", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape/object/property/created_by", @@ -595,8 +1110,14 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape/object/property/agent_class", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape/object/property/tools", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape/object/property/model_config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CategoricalFeedbackLabel/shape/object/property/value", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CategoricalFeedbackLabel/shape/object/property/sentiment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CategoricalFeedbackLabel/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CategoricalFeedbackLabel/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CategoricalFeedbackLabel", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape/object/property/index", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape/object/property/output", @@ -609,18 +1130,32 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape/object/property/tool_call", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape/object/property/tool_calls", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape/object/property/output_message", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCallContentItem/shape/discriminatedUnion/variant/text", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCallContentItem/shape/discriminatedUnion/variant/image_url", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCallContentItem/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCallContentItem", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Content/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Content/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Content/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Content", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape/object/property/content", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape/object/property/tool_call_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape/object/property/role", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape/object/property/tool_calls", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape/object/property/tool_call", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponseToolChoice/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponseToolChoice/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponseToolChoice/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponseToolChoice/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponseToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponseToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape/object/property/num_samples", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape/object/property/logprobs", @@ -633,10 +1168,15 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape/object/property/provider_request", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape/object/property/session_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape/object/property/tool_choice", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatRole/shape/enum/value/user", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatRole/shape/enum/value/assistant", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatRole/shape/enum/value/system", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatRole/shape/enum/value/tool", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatRole/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatRole", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape/object/property/num_samples", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape/object/property/logprobs", @@ -648,28 +1188,57 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape/object/property/provider_responses", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape/object/property/provider_request", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape/object/property/session_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/model", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/tool", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/evaluator", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/agent", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/generic", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigType/shape/enum/value/generic", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigType/shape/enum/value/model", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigType/shape/enum/value/tool", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigType/shape/enum/value/agent", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigType/shape/enum/value/evaluator", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigType/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigType", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/3", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/4", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/5", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequest/shape/object/property/inputs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequest/shape/object/property/messages", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequest/shape/object/property/target", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointsByLogsRequest/shape/object/property/log_ids", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointsByLogsRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointsByLogsRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointsByLogsRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateLogResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateLogResponse/shape/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateLogResponse/shape/object/property/session_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateLogResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateLogResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateLogResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateSessionResponse/shape/object/property/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateSessionResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateSessionResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateSessionResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DashboardConfiguration/shape/object/property/time_unit", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DashboardConfiguration/shape/object/property/time_range_days", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DashboardConfiguration/shape/object/property/model_config_ids", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DashboardConfiguration/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DashboardConfiguration/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DashboardConfiguration", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape/object/property/index", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape/object/property/output", @@ -678,17 +1247,25 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape/object/property/finish_reason", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape/object/property/model_config_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape/object/property/tool_results", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/3", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/4", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/5", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse/shape/object/property/dataset_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse/shape/object/property/inputs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse/shape/object/property/messages", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse/shape/object/property/target", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape/object/property/name", @@ -696,6 +1273,9 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape/object/property/datapoint_count", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape/object/property/created_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape/object/property/updated_at", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape/object/property/project_name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape/object/property/model_config_id", @@ -703,11 +1283,20 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape/object/property/environment_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape/object/property/environment_name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape/object/property/environment_tag", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentRequest/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentRequest/shape/object/property/name", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationDatapointSnapshotResponse/shape/object/property/datapoint", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationDatapointSnapshotResponse/shape/object/property/log", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationDatapointSnapshotResponse/shape/object/property/evaluation_results", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationDatapointSnapshotResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationDatapointSnapshotResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationDatapointSnapshotResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape/object/property/status", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape/object/property/config", @@ -718,10 +1307,15 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape/object/property/dataset_version_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape/object/property/dataset_snapshot", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape/object/property/evaluator_aggregates", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Value/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Value/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Value/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Value/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Value/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Value", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape/object/property/evaluator_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape/object/property/evaluator_version_id", @@ -735,12 +1329,19 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape/object/property/updated_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape/object/property/created_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape/object/property/evaluator_log", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationStatus/shape/enum/value/pending", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationStatus/shape/enum/value/running", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationStatus/shape/enum/value/completed", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationStatus/shape/enum/value/cancelled", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationStatus/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationStatus", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorArgumentsType/shape/enum/value/target_free", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorArgumentsType/shape/enum/value/target_required", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorArgumentsType/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorArgumentsType", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape/object/property/other", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape/object/property/created_by", @@ -752,6 +1353,9 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape/object/property/code", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape/object/property/arguments_type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape/object/property/return_type", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape/object/property/arguments_type", @@ -763,77 +1367,128 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape/object/property/created_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape/object/property/updated_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape/object/property/logging_project", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/boolean", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/number", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/select", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/multi_select", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/text", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorReturnTypeEnum/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorReturnTypeEnum", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorType/shape/enum/value/python", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorType/shape/enum/value/llm", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorType/shape/enum/value/human", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorType/shape/enum/value/external", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorType/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorType", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackType/shape/enum/value/rating", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackType/shape/enum/value/action", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackType/shape/enum/value/issue", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackType/shape/enum/value/correction", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackType/shape/enum/value/comment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackType/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackType", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackValue/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackValue/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackValue/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackValue/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackValue/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackValue", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback/shape/object/property/type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback/shape/object/property/value", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback/shape/object/property/data_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback/shape/object/property/user", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback/shape/object/property/created_at", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackClass/shape/enum/value/select", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackClass/shape/enum/value/multi_select", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackClass/shape/enum/value/text", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackClass/shape/enum/value/number", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackClass/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackClass", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackLabelRequest/shape/object/property/value", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackLabelRequest/shape/object/property/sentiment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackLabelRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackLabelRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackLabelRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestType/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestType/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestType/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestType", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestValue/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestValue/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestValue/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestValue/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestValue/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestValue", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape/object/property/type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape/object/property/value", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape/object/property/data_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape/object/property/user", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape/object/property/created_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape/object/property/unset", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseType/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseType/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseType/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseType", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseValue/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseValue/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseValue/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseValue/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseValue/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseValue", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape/object/property/type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape/object/property/value", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape/object/property/data_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape/object/property/user", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape/object/property/created_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape/object/property/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModelType/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModelType/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModelType/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModelType", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModel/shape/object/property/type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModel/shape/object/property/values", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModel/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModel/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModel", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypes/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypes", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FileType/shape/enum/value/prompt", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FileType/shape/enum/value/tool", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FileType/shape/enum/value/dataset", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FileType/shape/enum/value/evaluator", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FileType/shape/enum/value/flow", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FileType/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FileType", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionTool/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionTool/shape/object/property/arguments", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionTool/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionTool/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionTool", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionToolChoice/shape/object/property/name", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionToolChoice/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape/object/property/other", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape/object/property/created_by", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape/object/property/status", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape/object/property/description", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape/object/property/project_name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape/object/property/created_at", @@ -843,29 +1498,56 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape/object/property/evaluation_aggregates", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape/object/property/config", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape/object/property/environment_id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:HTTPValidationError/shape/object/property/detail", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:HTTPValidationError/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:HTTPValidationError/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:HTTPValidationError", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageChatContent/shape/object/property/image_url", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageChatContent/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageChatContent/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageChatContent", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrlDetail/shape/enum/value/high", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrlDetail/shape/enum/value/low", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrlDetail/shape/enum/value/auto", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrlDetail/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrlDetail", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrl/shape/object/property/url", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrl/shape/object/property/detail", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrl/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrl/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrl", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LabelSentiment/shape/enum/value/positive", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LabelSentiment/shape/enum/value/negative", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LabelSentiment/shape/enum/value/neutral", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LabelSentiment/shape/enum/value/unset", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LabelSentiment/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LabelSentiment", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape/object/property/source", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape/object/property/strict", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape/object/property/parameters", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Judgment/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Judgment/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Judgment/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Judgment/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Judgment/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Judgment", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Config/shape/discriminatedUnion/variant/model", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Config/shape/discriminatedUnion/variant/tool", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Config/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Config", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequestFeedback/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequestFeedback/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequestFeedback/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequestFeedback", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape/object/property/session_id", @@ -896,10 +1578,15 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape/object/property/output_cost", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape/object/property/provider_request", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape/object/property/provider_response", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponseToolChoice/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponseToolChoice/shape/undiscriminatedUnion/variant/1", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponseToolChoice/shape/undiscriminatedUnion/variant/2", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponseToolChoice/shape/undiscriminatedUnion/variant/3", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponseToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponseToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape/object/property/project", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape/object/property/session_id", @@ -942,10 +1629,17 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape/object/property/observability_status", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape/object/property/updated_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape/object/property/batch_ids", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestStop/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestStop/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestStop/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestStop", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestToolsItem/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestToolsItem/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestToolsItem/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestToolsItem", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape/object/property/provider", @@ -962,8 +1656,13 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape/object/property/endpoint", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape/object/property/chat_template", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape/object/property/tools", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequestStop/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequestStop/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequestStop/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequestStop", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape/object/property/provider", @@ -979,14 +1678,24 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape/object/property/response_format", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape/object/property/endpoint", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape/object/property/prompt_template", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse/shape/object/property/model_config_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse/shape/object/property/evaluator_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse/shape/object/property/evaluator_version_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse/shape/object/property/aggregate_value", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestStop/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestStop/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestStop/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestStop", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestToolsItem/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestToolsItem/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestToolsItem/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestToolsItem", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape/object/property/provider", @@ -1004,8 +1713,13 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape/object/property/prompt_template", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape/object/property/chat_template", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape/object/property/tools", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponseStop/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponseStop/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponseStop/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponseStop", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape/object/property/other", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape/object/property/name", @@ -1025,6 +1739,9 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape/object/property/tool_configs", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape/object/property/tools", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape/object/property/endpoint", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape/object/property/strict", @@ -1033,9 +1750,14 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape/object/property/source_code", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape/object/property/other", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape/object/property/preset_name", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelEndpoints/shape/enum/value/complete", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelEndpoints/shape/enum/value/chat", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelEndpoints/shape/enum/value/edit", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelEndpoints/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelEndpoints", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders/shape/enum/value/openai", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders/shape/enum/value/openai_azure", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders/shape/enum/value/mock", @@ -1045,37 +1767,61 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders/shape/enum/value/replicate", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders/shape/enum/value/google", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders/shape/enum/value/groq", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ObservabilityStatus/shape/enum/value/pending", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ObservabilityStatus/shape/enum/value/running", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ObservabilityStatus/shape/enum/value/completed", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ObservabilityStatus/shape/enum/value/failed", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ObservabilityStatus/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ObservabilityStatus", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse/shape/object/property/records", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse/shape/object/property/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse/shape/object/property/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse/shape/object/property/total", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse/shape/object/property/records", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse/shape/object/property/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse/shape/object/property/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse/shape/object/property/total", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse/shape/object/property/records", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse/shape/object/property/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse/shape/object/property/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse/shape/object/property/total", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse/shape/object/property/records", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse/shape/object/property/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse/shape/object/property/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse/shape/object/property/total", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse/shape/object/property/records", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse/shape/object/property/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse/shape/object/property/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse/shape/object/property/total", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse/shape/object/property/records", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse/shape/object/property/page", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse/shape/object/property/size", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse/shape/object/property/total", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PlatformAccessEnum/shape/enum/value/superadmin", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PlatformAccessEnum/shape/enum/value/supportadmin", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PlatformAccessEnum/shape/enum/value/user", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PlatformAccessEnum/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PlatformAccessEnum", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape/object/property/project_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape/object/property/project_name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape/object/property/created_at", @@ -1084,7 +1830,13 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape/object/property/num_datapoints", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape/object/property/evaluation_aggregates", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape/object/property/config", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectInputResponse/shape/object/property/name", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectInputResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectInputResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectInputResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape/object/property/active_config", @@ -1097,12 +1849,20 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape/object/property/directory_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape/object/property/created_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape/object/property/updated_at", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectSortBy/shape/enum/value/created_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectSortBy/shape/enum/value/updated_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectSortBy/shape/enum/value/name", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectSortBy/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectSortBy", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectUserResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectUserResponse/shape/object/property/email_address", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectUserResponse/shape/object/property/full_name", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectUserResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectUserResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectUserResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape/object/property/openai", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape/object/property/ai21", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape/object/property/mock", @@ -1111,14 +1871,25 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape/object/property/cohere", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape/object/property/openai_azure", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape/object/property/openai_azure_endpoint", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Type/shape/enum/value/json_object", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Type/shape/enum/value/json_schema", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Type/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ResponseFormat/shape/object/property/type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ResponseFormat/shape/object/property/json_schema", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ResponseFormat/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ResponseFormat/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ResponseFormat", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionProjectResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionProjectResponse/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionProjectResponse/shape/object/property/type", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object/property/id", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionProjectResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionProjectResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionProjectResponse", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object/property/reference_id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object/property/projects", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object/property/datapoints_count", @@ -1126,17 +1897,33 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object/property/last_output", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object/property/created_at", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object/property/updated_at", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SortOrder/shape/enum/value/asc", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SortOrder/shape/enum/value/desc", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SortOrder/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SortOrder", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TextChatContent/shape/object/property/text", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TextChatContent/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TextChatContent/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TextChatContent", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TimeUnit/shape/enum/value/day", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TimeUnit/shape/enum/value/week", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TimeUnit/shape/enum/value/month", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TimeUnit/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TimeUnit", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolCall/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolCall/shape/object/property/type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolCall/shape/object/property/function", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolCall/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolCall/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolCall", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolChoice/shape/object/property/type", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolChoice/shape/object/property/function", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolChoice/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolChoice/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolChoice", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape/object/property/strict", @@ -1145,6 +1932,9 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape/object/property/source_code", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape/object/property/other", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape/object/property/preset_name", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape/object/property/other", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape/object/property/created_by", @@ -1158,852 +1948,62 @@ "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape/object/property/signature", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape/object/property/is_preset", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape/object/property/preset_name", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse/shape/object/property/description", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse/shape/object/property/parameters", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse/shape/object/property/source", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse/shape/object/property/name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse/shape/object/property/signature", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse/shape/object/property/result", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolSource/shape/enum/value/organization", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolSource/shape/enum/value/inline", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolSource/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolSource", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolType/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolType", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UpdateLogRequest/shape/object/property/output", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UpdateLogRequest/shape/object/property/error", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UpdateLogRequest/shape/object/property/duration", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UpdateLogRequest/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UpdateLogRequest/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UpdateLogRequest", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Usage/shape/object/property/prompt_tokens", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Usage/shape/object/property/generation_tokens", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Usage/shape/object/property/total_tokens", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Usage/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Usage/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Usage", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse/shape/object/property/id", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse/shape/object/property/email_address", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse/shape/object/property/full_name", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse/shape/object/property/verified", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/0", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/1", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationErrorLocItem/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationErrorLocItem", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationError/shape/object/property/loc", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationError/shape/object/property/msg", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationError/shape/object/property/type", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationError/shape/object", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationError/shape", + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationError", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:VersionStatus/shape/enum/value/uncommitted", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:VersionStatus/shape/enum/value/committed", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:VersionStatus/shape/enum/value/deleted", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/response/stream/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/response/stream/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/response/stream/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment_stream/response/stream/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/response/stream/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/response/stream/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/response/stream/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment_stream/response/stream/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/error/0/422/error/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCallContentItem/shape/discriminatedUnion/variant/text", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCallContentItem/shape/discriminatedUnion/variant/image_url", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/model", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/tool", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/evaluator", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/agent", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape/discriminatedUnion/variant/generic", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypes/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Config/shape/discriminatedUnion/variant/model", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Config/shape/discriminatedUnion/variant/tool", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolType/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/request/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CategoricalFeedbackLabel/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointsByLogsRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateLogResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateSessionResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DashboardConfiguration/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationDatapointSnapshotResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackLabelRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModel/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionTool/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionToolChoice/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:HTTPValidationError/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageChatContent/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrl/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectInputResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectUserResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ResponseFormat/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionProjectResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TextChatContent/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolCall/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolChoice/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UpdateLogRequest/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Usage/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationError/shape/object", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolCall/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolCall/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolCall/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolCall/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolCall/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolCall/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_datasets:Request/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_evaluations:CreateEvaluationResultLogRequestResult/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestStop/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestToolsItem/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ModelConfigsSerializeRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Content/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponseToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatRole/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigType/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Value/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationStatus/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorArgumentsType/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorReturnTypeEnum/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorType/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackType/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackValue/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackClass/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestType/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestValue/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseType/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseValue/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModelType/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypes", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FileType/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrlDetail/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LabelSentiment/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Judgment/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequestFeedback/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponseToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestStop/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestToolsItem/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequestStop/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestStop/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestToolsItem/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponseStop/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelEndpoints/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ObservabilityStatus/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PlatformAccessEnum/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectSortBy/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Type/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SortOrder/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TimeUnit/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolSource/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolType", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationErrorLocItem/shape", "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:VersionStatus/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment_stream/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment_stream/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/example/2", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment_stream/response", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment_stream/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/error/0/422", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/example/0", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete/example/1", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy/request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateStreamRequestToolCall", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateRequestToolCall", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedStreamRequestToolCall", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateDeployedRequestToolCall", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigStreamRequestToolCall", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_chats:ChatsCreateConfigRequestToolCall", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_datasets:Request", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_evaluations:CreateEvaluationResultLogRequestResult", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_feedback:FeedbackFeedbackResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_logs:LogsLogResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestStop", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ProjectModelConfigRequestToolsItem", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_modelConfigs:ModelConfigsSerializeRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CategoricalFeedbackLabel/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCallContentItem/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Content", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponseToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatRole", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigType", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequestTargetValue", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointsByLogsRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateLogResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateSessionResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DashboardConfiguration/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponseTargetValue", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationDatapointSnapshotResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Value", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationStatus", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorArgumentsType", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorReturnTypeEnum", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorType", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackType", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackValue", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackClass", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackLabelRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestType", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequestValue", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseType", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponseValue", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModelType", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModel/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FileType", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionTool/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:HTTPValidationError/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageChatContent/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrlDetail", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrl/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LabelSentiment", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Judgment", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Config/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequestFeedback", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponseToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestStop", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequestToolsItem", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequestStop", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestStop", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequestToolsItem", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponseStop", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelEndpoints", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelProviders", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ObservabilityStatus", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PlatformAccessEnum", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectInputResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectSortBy", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectUserResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Type", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ResponseFormat/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionProjectResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SortOrder", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TextChatContent/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TimeUnit", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolCall/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolChoice/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolSource", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UpdateLogRequest/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Usage/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationErrorLocItem", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationError/shape", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:VersionStatus", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:AgentConfigResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CategoricalFeedbackLabel", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatDataResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCallContentItem", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatMessageWithToolCall", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ChatResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CompletionResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ConfigResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateDatapointsByLogsRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateLogResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:CreateSessionResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DashboardConfiguration", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DataResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatapointResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:DatasetResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentProjectConfigResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EnvironmentRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationDatapointSnapshotResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluationResultResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorConfigResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:EvaluatorResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Feedback", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackLabelRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FeedbackTypeModel", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionTool", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:FunctionToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GenericConfigResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:GetModelConfigResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:HTTPValidationError", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageChatContent", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ImageUrl", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LinkedToolRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Config", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:LogResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigChatRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigCompletionRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigEvaluatorAggregateResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ModelConfigToolRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataDatapointResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationDatapointSnapshotResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataEvaluationResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataLogResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataProjectResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:PaginatedDataSessionResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectConfigResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectInputResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProjectUserResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ProviderApiKeys", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ResponseFormat", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionProjectResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:SessionResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:TextChatContent", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolCall", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolChoice", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolConfigResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ToolResultResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UpdateLogRequest", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:Usage", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:UserResponse", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:ValidationError", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.createStream", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed_stream", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_deployed", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config_stream", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_config", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment_stream", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_chats.create_experiment", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.createStream", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed_stream", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_deployed", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config_stream", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_config", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment_stream", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_completions.create_experiment", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.get", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.update", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datapoints.delete", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_datasets", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_evaluations", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.get", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.delete", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.list_configs", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.create_feedback_type", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.update_feedback_types", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects.export", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.get", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.delete", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.update", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.list_datapoints", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_datasets.create_datapoint", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.get", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list_datapoints", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.create", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.log", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.result", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.update_status", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.add_evaluators", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluations.list", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.list", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.create", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.get", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.delete", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_evaluators.update", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_feedback.feedback", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.list", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.log", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.delete", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update_by_ref", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.get", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_logs.update", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.register", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.get", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.export", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.serialize", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_modelConfigs.deserialize", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.list", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.create", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_sessions.get", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.get", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/activeConfig.deactivate", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.list", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.deploy", - "8099ff24-8ade-48d5-a54a-8d2d1831d806/endpoint/endpoint_projects/deployedConfig.delete" + "8099ff24-8ade-48d5-a54a-8d2d1831d806/type-definition/type_:VersionStatus" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitionKeys-d8feb9f1-c5b3-4935-9375-ad1f1826d72d.json b/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitionKeys-d8feb9f1-c5b3-4935-9375-ad1f1826d72d.json index 8b4f615476..d40148a64a 100644 --- a/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitionKeys-d8feb9f1-c5b3-4935-9375-ad1f1826d72d.json +++ b/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitionKeys-d8feb9f1-c5b3-4935-9375-ad1f1826d72d.json @@ -31,12 +31,20 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/request/object/property/user", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/request/object/property/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/request/object/property/save", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/path/log_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/request/object/property/output_message", @@ -59,12 +67,20 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/request/object/property/metadata", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/request/object/property/start_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/request/object/property/end_time", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/request/object/property/path", @@ -89,12 +105,21 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/request/object/property/return_inputs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/request/object/property/logprobs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/request/object/property/suffix", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/response/stream/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/request/object/property/path", @@ -119,30 +144,46 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/request/object/property/return_inputs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/request/object/property/logprobs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/request/object/property/suffix", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/2/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/2/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/2/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/3/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/3/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/3/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/query/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/query/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/query/user_filter", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/query/sort_by", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/query/order", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request/object/property/model", @@ -162,85 +203,149 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request/object/property/linked_tools", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request/object/property/attributes", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request/object/property/commit_message", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/query/environment", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/request/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/request/object/property/name", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/query/status", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/query/evaluator_aggregates", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/path/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/path/environment_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/query/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/path/environment_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/request/object/property/path", @@ -264,12 +369,20 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/request/object/property/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/request/object/property/save", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/request/object/property/tool", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/path/log_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/request/object/property/output", @@ -284,24 +397,38 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/request/object/property/metadata", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/request/object/property/start_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/request/object/property/end_time", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/query/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/query/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/query/user_filter", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/query/sort_by", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/query/order", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request/object/property/function", @@ -310,97 +437,167 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request/object/property/attributes", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request/object/property/tool_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request/object/property/commit_message", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/query/environment", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/request/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/request/object/property/name", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/query/status", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/query/evaluator_aggregates", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/path/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/path/environment_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/query/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/path/environment_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/query/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/query/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/query/user_filter", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/query/sort_by", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/query/order", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/request/object/property/path", @@ -409,191 +606,328 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/request/object/property/action", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/request/object/property/attributes", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/request/object/property/commit_message", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/2/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/2/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/2/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/2", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/query/include_datapoints", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/request/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/request/object/property/name", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/query/size", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/query/status", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/path/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request/formdata/field/file/file/file", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request/formdata/field/file", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request/formdata/field/commit_message/property/commit_message", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request/formdata/field/commit_message", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request/formdata", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/path/environment_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/query/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/path/environment_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/query/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/query/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/query/user_filter", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/query/sort_by", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/query/order", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/request/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/request/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/request/object/property/commit_message", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/request/object/property/spec", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/query/environment", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/request/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/request/object/property/name", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/query/status", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/query/evaluator_aggregates", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/path/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/path/environment_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/query/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/path/environment_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/request/object/property/path", @@ -619,60 +953,101 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/request/object/property/save", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/request/object/property/judgment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/request/object/property/spec", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/query/environment", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/request/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/request/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/request/object/property/directory_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/query/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/query/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/query/user_filter", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/query/sort_by", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/query/order", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/request/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/request/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/request/object/property/attributes", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/request/object/property/commit_message", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/query/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/request/object/property/evaluation_id", @@ -699,71 +1074,124 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/request/object/property/trace_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/request/object/property/flow", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/request/object/property/trace_status", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/path/log_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/request/object/property/inputs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/request/object/property/output", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/request/object/property/error", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/request/object/property/trace_status", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/query/status", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/query/evaluator_aggregates", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/path/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/path/environment_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/query/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/path/environment_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/query/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/query/name", @@ -771,82 +1199,141 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/query/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/query/sort_by", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/query/order", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/query/file_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/query/size", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/request/object/property/dataset", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/request/object/property/evaluatees", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/request/object/property/evaluators", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/request/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/request/object/property/file", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/request/object/property/dataset", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/request/object/property/evaluatees", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/request/object/property/evaluators", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/request/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/request/object/property/file", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/request/object/property/status", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/request/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/request", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/path/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/query/size", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/query/file_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/query/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/query/size", @@ -858,58 +1345,93 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/query/end_date", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/query/include_parent", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/query/in_trace_filter", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/query/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/path/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/response", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/error/0/422/error/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/error/0/422", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/0/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/0/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/0/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/1/snippet/curl/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/1/snippet/python/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/1/snippet/typescript/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogRequestToolChoice/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogRequestToolChoice/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogRequestToolChoice/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogRequestToolChoice/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogRequestToolChoice", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogUpdateRequestToolChoice/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogUpdateRequestToolChoice/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogUpdateRequestToolChoice/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogUpdateRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogUpdateRequestToolChoice/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogUpdateRequestToolChoice", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallStreamRequestToolChoice/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallStreamRequestToolChoice/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallStreamRequestToolChoice/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallStreamRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallStreamRequestToolChoice/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallStreamRequestToolChoice", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallRequestToolChoice/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallRequestToolChoice/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallRequestToolChoice/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallRequestToolChoice/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallRequestToolChoice/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallRequestToolChoice", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestTemplate/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestTemplate/shape/undiscriminatedUnion/variant/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestStop/shape/undiscriminatedUnion/variant/0", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestTemplate/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestTemplate", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestStop/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestStop/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestStop/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestStop", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:SrcExternalAppModelsV5EvaluatorsEvaluatorRequestSpec/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:SrcExternalAppModelsV5EvaluatorsEvaluatorRequestSpec/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:SrcExternalAppModelsV5EvaluatorsEvaluatorRequestSpec/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:SrcExternalAppModelsV5EvaluatorsEvaluatorRequestSpec/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:SrcExternalAppModelsV5EvaluatorsEvaluatorRequestSpec/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:SrcExternalAppModelsV5EvaluatorsEvaluatorRequestSpec", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestJudgment/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestJudgment/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestJudgment/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestJudgment/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestJudgment/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestJudgment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestSpec/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestSpec/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestSpec/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestSpec/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestSpec/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestSpec", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape/object/property/evaluator_version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape/object/property/total_logs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape/object/property/num_judgments", @@ -917,63 +1439,106 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape/object/property/num_errors", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape/object/property/num_true", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape/object/property/num_false", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContentItem/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContentItem/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContentItem/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContentItem", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContent/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContent/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContent/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContent", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage/shape/object/property/content", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage/shape/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage/shape/object/property/tool_call_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage/shape/object/property/role", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage/shape/object/property/tool_calls", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatRole/shape/enum/value/user", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatRole/shape/enum/value/assistant", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatRole/shape/enum/value/system", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatRole/shape/enum/value/tool", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatRole/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatRole", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest/shape/object/property/arguments_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest/shape/object/property/return_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest/shape/object/property/attributes", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest/shape/object/property/evaluator_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest/shape/object/property/code", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CommitRequest/shape/object/property/commit_message", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CommitRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CommitRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CommitRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/3", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/4", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue/shape/undiscriminatedUnion/variant/5", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequest/shape/object/property/inputs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequest/shape/object/property/messages", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequest/shape/object/property/target", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse/shape/object/property/parent_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse/shape/object/property/session_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse/shape/object/property/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse/shape/object/property/flow_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse/shape/object/property/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse/shape/object/property/trace_status", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse/shape/object/property/prompt_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse/shape/object/property/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse/shape/object/property/session_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse/shape/object/property/tool_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse/shape/object/property/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse/shape/object/property/session_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DashboardConfiguration/shape/object/property/time_unit", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DashboardConfiguration/shape/object/property/time_range_days", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DashboardConfiguration/shape/object/property/model_config_ids", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DashboardConfiguration/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DashboardConfiguration/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DashboardConfiguration", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/3", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/4", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue/shape/undiscriminatedUnion/variant/5", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse/shape/object/property/inputs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse/shape/object/property/messages", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse/shape/object/property/target", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse/shape/object/property/id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape/object/property/directory_id", @@ -990,31 +1555,53 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape/object/property/datapoints_count", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape/object/property/datapoints", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape/object/property/attributes", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse/shape/object/property/created_at", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse/shape/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse/shape/object/property/tag", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentTag/shape/enum/value/default", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentTag/shape/enum/value/other", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentTag/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentTag", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatedVersionResponse/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatedVersionResponse/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatedVersionResponse/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatedVersionResponse/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatedVersionResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatedVersionResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape/object/property/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape/object/property/file_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape/object/property/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape/object/property/batch_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape/object/property/orchestrated", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeResponse/shape/object/property/version", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeResponse/shape/object/property/batch_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeResponse/shape/object/property/orchestrated", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationEvaluatorResponse/shape/object/property/version", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationEvaluatorResponse/shape/object/property/orchestrated", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationEvaluatorResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationEvaluatorResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationEvaluatorResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse/shape/object/property/evaluated_version", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse/shape/object/property/datapoint", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse/shape/object/property/log", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse/shape/object/property/evaluator_logs", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape/object/property/dataset", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape/object/property/evaluatees", @@ -1026,37 +1613,65 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape/object/property/created_by", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape/object/property/updated_at", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape/object/property/url", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats/shape/object/property/overall_stats", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats/shape/object/property/version_stats", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats/shape/object/property/progress", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats/shape/object/property/report", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats/shape/object/property/status", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStatus/shape/enum/value/pending", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStatus/shape/enum/value/running", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStatus/shape/enum/value/completed", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStatus/shape/enum/value/cancelled", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStatus/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStatus", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestActivateItem/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestActivateItem/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestActivateItem/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestActivateItem", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestDeactivateItem/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestDeactivateItem/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestDeactivateItem/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestDeactivateItem", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequest/shape/object/property/activate", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequest/shape/object/property/deactivate", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate/shape/object/property/value", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate/shape/object/property/evaluator_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate/shape/object/property/evaluator_version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate/shape/object/property/created_at", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate/shape/object/property/updated_at", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorArgumentsType/shape/enum/value/target_free", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorArgumentsType/shape/enum/value/target_required", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorArgumentsType/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorArgumentsType", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentNumberLimit/shape/object/property/min", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentNumberLimit/shape/object/property/max", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentNumberLimit/shape/object/property/step", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentNumberLimit/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentNumberLimit/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentNumberLimit", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentOptionResponse/shape/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentOptionResponse/shape/object/property/valence", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentOptionResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentOptionResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentOptionResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponseJudgment/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponseJudgment/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponseJudgment/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponseJudgment/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponseJudgment/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponseJudgment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape/object/property/start_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape/object/property/end_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape/object/property/output", @@ -1084,10 +1699,15 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape/object/property/trace_children", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape/object/property/evaluator", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape/object/property/parent", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponseSpec/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponseSpec/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponseSpec/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponseSpec/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponseSpec/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponseSpec", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape/object/property/directory_id", @@ -1108,33 +1728,54 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape/object/property/evaluators", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape/object/property/evaluator_aggregates", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape/object/property/attributes", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/boolean", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/number", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/select", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/multi_select", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorReturnTypeEnum/shape/enum/value/text", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorReturnTypeEnum/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorReturnTypeEnum", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest/shape/object/property/arguments_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest/shape/object/property/return_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest/shape/object/property/attributes", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest/shape/object/property/evaluator_type", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponseFile/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponseFile/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponseFile/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponseFile/shape/undiscriminatedUnion/variant/3", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponseFile/shape/undiscriminatedUnion/variant/4", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponseFile/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponseFile", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse/shape/object/property/created_at", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse/shape/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse/shape/object/property/tag", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse/shape/object/property/file", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileRequest/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileRequest/shape/object/property/path", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileType/shape/enum/value/prompt", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileType/shape/enum/value/tool", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileType/shape/enum/value/dataset", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileType/shape/enum/value/evaluator", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileType/shape/enum/value/flow", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileType/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileType", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowKernelRequest/shape/object/property/attributes", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowKernelRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowKernelRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowKernelRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape/object/property/start_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape/object/property/end_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape/object/property/output", @@ -1160,6 +1801,9 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape/object/property/trace_children", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape/object/property/flow", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape/object/property/trace_status", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape/object/property/directory_id", @@ -1177,15 +1821,29 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape/object/property/version_logs_count", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape/object/property/evaluator_aggregates", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape/object/property/evaluators", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionTool/shape/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionTool/shape/object/property/arguments", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionTool/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionTool/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionTool", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionToolChoice/shape/object/property/name", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionToolChoice/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionToolChoice/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionToolChoice", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HttpValidationError/shape/object/property/detail", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HttpValidationError/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HttpValidationError/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HttpValidationError", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequestReturnType/shape/enum/value/select", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequestReturnType/shape/enum/value/multi_select", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequestReturnType/shape/enum/value/text", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequestReturnType/shape/enum/value/number", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequestReturnType/shape/enum/value/boolean", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequestReturnType/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequestReturnType", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape/object/property/arguments_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape/object/property/return_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape/object/property/attributes", @@ -1194,37 +1852,76 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape/object/property/options", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape/object/property/number_limits", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape/object/property/number_valence", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageChatContent/shape/object/property/type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageChatContent/shape/object/property/image_url", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageChatContent/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageChatContent/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageChatContent", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrlDetail/shape/enum/value/high", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrlDetail/shape/enum/value/low", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrlDetail/shape/enum/value/auto", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrlDetail/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrlDetail", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrl/shape/object/property/url", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrl/shape/object/property/detail", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrl/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrl/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrl", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:InputResponse/shape/object/property/name", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:InputResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:InputResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:InputResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest/shape/object/property/arguments_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest/shape/object/property/return_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest/shape/object/property/attributes", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest/shape/object/property/evaluator_type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest/shape/object/property/prompt", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape/object/property/description", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape/object/property/strict", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape/object/property/parameters", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape/object/property/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListDatasets/shape/object/property/records", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListDatasets/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListDatasets/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListDatasets", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListEvaluators/shape/object/property/records", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListEvaluators/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListEvaluators/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListEvaluators", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListFlows/shape/object/property/records", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListFlows/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListFlows/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListFlows", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListPrompts/shape/object/property/records", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListPrompts/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListPrompts/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListPrompts", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListTools/shape/object/property/records", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListTools/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListTools/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListTools", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LogResponse/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LogResponse/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LogResponse/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LogResponse/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelEndpoints/shape/enum/value/complete", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelEndpoints/shape/enum/value/chat", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelEndpoints/shape/enum/value/edit", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelEndpoints/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelEndpoints", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders/shape/enum/value/openai", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders/shape/enum/value/openai_azure", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders/shape/enum/value/mock", @@ -1234,16 +1931,29 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders/shape/enum/value/replicate", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders/shape/enum/value/google", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders/shape/enum/value/groq", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorEnvironmentRequest/shape/object/property/evaluator_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorEnvironmentRequest/shape/object/property/environment_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorEnvironmentRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorEnvironmentRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorEnvironmentRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse/shape/object/property/version_reference", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse/shape/object/property/version", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse/shape/object/property/state", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse/shape/object/property/created_at", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse/shape/object/property/updated_at", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorState/shape/enum/value/active", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorState/shape/enum/value/inactive", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorState/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorState", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorVersionRequest/shape/object/property/evaluator_version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorVersionRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorVersionRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorVersionRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape/object/property/evaluator_version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape/object/property/total_logs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape/object/property/num_judgments", @@ -1252,64 +1962,108 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape/object/property/mean", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape/object/property/std", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape/object/property/percentiles", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ObservabilityStatus/shape/enum/value/pending", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ObservabilityStatus/shape/enum/value/running", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ObservabilityStatus/shape/enum/value/completed", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ObservabilityStatus/shape/enum/value/failed", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ObservabilityStatus/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ObservabilityStatus", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:OverallStats/shape/object/property/num_datapoints", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:OverallStats/shape/object/property/total_logs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:OverallStats/shape/object/property/total_evaluator_logs", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:OverallStats/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:OverallStats/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:OverallStats", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponseRecordsItem/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponseRecordsItem/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponseRecordsItem/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponseRecordsItem/shape/undiscriminatedUnion/variant/3", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponseRecordsItem/shape/undiscriminatedUnion/variant/4", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponseRecordsItem/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponseRecordsItem", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse/shape/object/property/records", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse/shape/object/property/page", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse/shape/object/property/size", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse/shape/object/property/total", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PlatformAccessEnum/shape/enum/value/superadmin", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PlatformAccessEnum/shape/enum/value/supportadmin", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PlatformAccessEnum/shape/enum/value/user", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PlatformAccessEnum/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PlatformAccessEnum", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProjectSortBy/shape/enum/value/created_at", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProjectSortBy/shape/enum/value/updated_at", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProjectSortBy/shape/enum/value/name", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProjectSortBy/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProjectSortBy", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape/object/property/output", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape/object/property/created_at", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape/object/property/error", @@ -1322,10 +2076,15 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape/object/property/output_cost", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape/object/property/finish_reason", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape/object/property/index", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponseToolChoice/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponseToolChoice/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponseToolChoice/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponseToolChoice/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponseToolChoice/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponseToolChoice", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape/object/property/start_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape/object/property/end_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape/object/property/messages", @@ -1343,6 +2102,9 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape/object/property/trace_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape/object/property/logs", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape/object/property/output", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape/object/property/created_at", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape/object/property/error", @@ -1358,10 +2120,17 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape/object/property/prompt_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape/object/property/version_id", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestTemplate/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestTemplate/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestTemplate/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestTemplate", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestStop/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestStop/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestStop/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestStop", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape/object/property/model", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape/object/property/endpoint", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape/object/property/template", @@ -1378,10 +2147,15 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape/object/property/tools", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape/object/property/linked_tools", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape/object/property/attributes", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponseToolChoice/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponseToolChoice/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponseToolChoice/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponseToolChoice/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponseToolChoice/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponseToolChoice", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape/object/property/output_message", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape/object/property/prompt_tokens", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape/object/property/output_tokens", @@ -1414,10 +2188,17 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape/object/property/trace_flow_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape/object/property/trace_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape/object/property/trace_children", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseTemplate/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseTemplate/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseTemplate/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseTemplate", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseStop/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseStop/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseStop/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseStop", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape/object/property/directory_id", @@ -1452,6 +2233,9 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape/object/property/inputs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape/object/property/evaluators", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape/object/property/evaluator_aggregates", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape/object/property/openai", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape/object/property/ai21", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape/object/property/mock", @@ -1460,41 +2244,74 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape/object/property/cohere", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape/object/property/openai_azure", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape/object/property/openai_azure_endpoint", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormatType/shape/enum/value/json_object", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormatType/shape/enum/value/json_schema", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormatType/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormatType", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormat/shape/object/property/type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormat/shape/object/property/json_schema", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormat/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormat/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormat", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape/object/property/evaluator_version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape/object/property/total_logs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape/object/property/num_judgments", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape/object/property/num_nulls", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape/object/property/num_errors", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape/object/property/num_judgments_per_option", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SortOrder/shape/enum/value/asc", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SortOrder/shape/enum/value/desc", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SortOrder/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SortOrder", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextChatContent/shape/object/property/type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextChatContent/shape/object/property/text", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextChatContent/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextChatContent/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextChatContent", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse/shape/object/property/evaluator_version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse/shape/object/property/total_logs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse/shape/object/property/num_judgments", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse/shape/object/property/num_nulls", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse/shape/object/property/num_errors", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TimeUnit/shape/enum/value/day", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TimeUnit/shape/enum/value/week", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TimeUnit/shape/enum/value/month", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TimeUnit/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TimeUnit", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolCall/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolCall/shape/object/property/type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolCall/shape/object/property/function", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolCall/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolCall/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolCall", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolChoice/shape/object/property/type", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolChoice/shape/object/property/function", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolChoice/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolChoice/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolChoice", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction/shape/object/property/name", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction/shape/object/property/description", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction/shape/object/property/strict", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction/shape/object/property/parameters", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest/shape/object/property/function", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest/shape/object/property/source_code", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest/shape/object/property/setup_values", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest/shape/object/property/attributes", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape/object/property/start_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape/object/property/end_time", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape/object/property/output", @@ -1519,6 +2336,9 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape/object/property/trace_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape/object/property/trace_children", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape/object/property/tool", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape/object/property/id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape/object/property/directory_id", @@ -1543,942 +2363,122 @@ "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape/object/property/evaluators", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape/object/property/signature", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape/object/property/evaluator_aggregates", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TraceStatus/shape/enum/value/complete", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TraceStatus/shape/enum/value/incomplete", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TraceStatus/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TraceStatus", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateDatesetAction/shape/enum/value/set", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateDatesetAction/shape/enum/value/add", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateDatesetAction/shape/enum/value/remove", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateDatesetAction/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateDatesetAction", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UserResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UserResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:Valence/shape/enum/value/positive", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:Valence/shape/enum/value/negative", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:Valence/shape/enum/value/neutral", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:Valence/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:Valence", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationErrorLocItem/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationErrorLocItem", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationError/shape/object/property/loc", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationError/shape/object/property/msg", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationError/shape/object/property/type", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationError/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationError/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationError", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponseFile/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponseFile/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponseFile/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponseFile/shape/undiscriminatedUnion/variant/3", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponseFile/shape/undiscriminatedUnion/variant/4", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponseFile/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponseFile", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponse/shape/object/property/file", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponse/shape/object/property/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponse/shape/object/property/type", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponseVersion/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponseVersion/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponseVersion/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponseVersion/shape/undiscriminatedUnion/variant/3", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponseVersion/shape/undiscriminatedUnion/variant/4", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponseVersion/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponseVersion", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponse/shape/object/property/version", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponse/shape/object/property/type", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionReferenceResponse/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionReferenceResponse/shape/undiscriminatedUnion/variant/1", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionReferenceResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionReferenceResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponseEvaluatorVersionStatsItem/shape/undiscriminatedUnion/variant/0", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponseEvaluatorVersionStatsItem/shape/undiscriminatedUnion/variant/1", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponseEvaluatorVersionStatsItem/shape/undiscriminatedUnion/variant/2", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponseEvaluatorVersionStatsItem/shape/undiscriminatedUnion/variant/3", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponseEvaluatorVersionStatsItem/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponseEvaluatorVersionStatsItem", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponse/shape/object/property/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponse/shape/object/property/num_logs", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponse/shape/object/property/evaluator_version_stats", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatus/shape/enum/value/uncommitted", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatus/shape/enum/value/committed", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatus/shape/enum/value/deleted", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatus/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatus", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatToolType/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatToolType", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType/shape/enum/value/pinecone_search", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType/shape/enum/value/google", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType/shape/enum/value/mock", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType/shape/enum/value/snippet", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType/shape/enum/value/json_schema", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType/shape/enum/value/get_api_call", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest/shape/object/property/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest/shape/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest/shape/object/property/file_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest/shape/object/property/environment", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest/shape/object/property/version_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest/shape/object/property/path", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest/shape/object/property/file_id", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest/shape/object/property/environment", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest/shape/object/property/orchestrated", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/response/stream/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/error/0/422/error/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UserResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatToolType/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:AgentConfigResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:AgentConfigResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:AgentConfigResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorConfigResponse/shape/object", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorConfigResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorConfigResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateEvaluationStatusRequest/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateEvaluationStatusRequest", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedPromptLogResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedPromptLogResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedSessionResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedSessionResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ConfigToolResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ConfigToolResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FeedbackType/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BaseModelsUserResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request/formdata/field/file", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request/formdata/field/commit_message", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/request/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CommitRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DashboardConfiguration/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationEvaluatorResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentNumberLimit/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentOptionResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowKernelRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionTool/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionToolChoice/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HttpValidationError/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageChatContent/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrl/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:InputResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListDatasets/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListEvaluators/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListFlows/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListPrompts/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListTools/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorEnvironmentRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorVersionRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:OverallStats/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormat/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextChatContent/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolCall/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolChoice/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationError/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponse/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest/shape/object", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogRequestToolChoice/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogUpdateRequestToolChoice/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallStreamRequestToolChoice/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallRequestToolChoice/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestTemplate/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestStop/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:SrcExternalAppModelsV5EvaluatorsEvaluatorRequestSpec/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestJudgment/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestSpec/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContentItem/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContent/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatRole/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentTag/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatedVersionResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStatus/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestActivateItem/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestDeactivateItem/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorArgumentsType/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponseJudgment/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponseSpec/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorReturnTypeEnum/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponseFile/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileType/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequestReturnType/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrlDetail/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelEndpoints/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorState/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ObservabilityStatus/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponseRecordsItem/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PlatformAccessEnum/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProjectSortBy/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponseToolChoice/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestTemplate/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestStop/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponseToolChoice/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseTemplate/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseStop/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormatType/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SortOrder/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TimeUnit/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TraceStatus/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateDatesetAction/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UserResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:Valence/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationErrorLocItem/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponseFile/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponseVersion/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionReferenceResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponseEvaluatorVersionStatsItem/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatus/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatToolType", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateEvaluationStatusRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedPromptLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedSessionResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ConfigToolResponse", "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FeedbackType", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BaseModelsUserResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/response", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/2", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/example/3", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/example/2", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/error/0/422", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/0", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get/example/1", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:AgentConfigResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorConfigResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request/formdata", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogRequestToolChoice", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptLogUpdateRequestToolChoice", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallStreamRequestToolChoice", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptsCallRequestToolChoice", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestTemplate", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_prompts:PromptRequestStop", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:SrcExternalAppModelsV5EvaluatorsEvaluatorRequestSpec", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestJudgment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_evaluators:CreateEvaluatorLogRequestSpec", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContentItem", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessageContent", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatRole", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CommitRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequestTargetValue", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DashboardConfiguration/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponseTargetValue", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentTag", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatedVersionResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationEvaluatorResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStatus", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestActivateItem", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequestDeactivateItem", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorArgumentsType", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentNumberLimit/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentOptionResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponseJudgment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponseSpec", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorReturnTypeEnum", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponseFile", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileType", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowKernelRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionTool/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionToolChoice/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HttpValidationError/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequestReturnType", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageChatContent/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrlDetail", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrl/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:InputResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListDatasets/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListEvaluators/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListFlows/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListPrompts/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListTools/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelEndpoints", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ModelProviders", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorEnvironmentRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorState", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorVersionRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ObservabilityStatus", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:OverallStats/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponseRecordsItem", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PlatformAccessEnum", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProjectSortBy", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponseToolChoice", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestTemplate", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequestStop", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponseToolChoice", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseTemplate", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponseStop", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormatType", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormat/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SortOrder", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextChatContent/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TimeUnit", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolCall/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolChoice/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TraceStatus", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:UpdateDatesetAction", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:Valence", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationErrorLocItem", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationError/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponseFile", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponseVersion", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionReferenceResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponseEvaluatorVersionStatsItem", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponse/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatus", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FilesToolType", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest/shape", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:AgentConfigResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorConfigResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BooleanEvaluatorStatsResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ChatMessage", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CodeEvaluatorRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CommitRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateDatapointRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateEvaluatorLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateFlowLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreatePromptLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:CreateToolLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DashboardConfiguration", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatapointResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:DatasetResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EnvironmentResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluateeResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationEvaluatorResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationReportLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationStats", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorActivationDeactivationRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorAggregate", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentNumberLimit", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorJudgmentOptionResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluatorResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ExternalEvaluatorRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileEnvironmentResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FileRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowKernelRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FlowResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionTool", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:FunctionToolChoice", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HttpValidationError", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:HumanEvaluatorRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageChatContent", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ImageUrl", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:InputResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LlmEvaluatorRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:LinkedToolResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListDatasets", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListEvaluators", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListFlows", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListPrompts", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ListTools", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorEnvironmentRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:MonitoringEvaluatorVersionRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:NumericEvaluatorStatsResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:OverallStats", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatapointResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDatasetResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluationReportLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedEvaluationResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataEvaluatorResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataFlowResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataPromptResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataToolResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PaginatedDataUnionPromptResponseToolResponseDatasetResponseEvaluatorResponseFlowResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptCallStreamResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptKernelRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:PromptResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ProviderApiKeys", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ResponseFormat", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:SelectEvaluatorStatsResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextChatContent", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:TextEvaluatorStatsResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolCall", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolChoice", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolFunction", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolKernelRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolLogResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ToolResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:ValidationError", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionDeploymentResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionIdResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:VersionStatsResponse", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsDatasetRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:EvaluationsRequest", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.log", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.update", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call_stream", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.call", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.list", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.upsert", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.get", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.delete", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.move", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listVersions", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.commit", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.updateMonitoring", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.setDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.removeDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_prompts.listEnvironments", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.log", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.update", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.list", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.upsert", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.get", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.delete", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.move", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listVersions", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.commit", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.updateMonitoring", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.setDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.removeDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_tools.listEnvironments", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.list", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.upsert", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.get", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.delete", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.move", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listDatapoints", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listVersions", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.commit", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv/request", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.setDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.removeDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.listEnvironments", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.list", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.upsert", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.get", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.delete", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.move", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listVersions", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.commit", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.setDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.removeDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.listEnvironments", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluators.log", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.get", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.delete", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.move", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.list", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.upsert", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.log", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateLog", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listVersions", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.commit", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.setDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.removeDeployment", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.listEnvironments", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_flows.updateMonitoring", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_files.list", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.list", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.create", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.get", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.delete", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateSetup", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.updateStatus", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getStats", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_evaluations.getLogs", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.list", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.delete", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_logs.get", - "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/endpoint/endpoint_datasets.uploadCsv" + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BaseModelsUserResponse/shape", + "d8feb9f1-c5b3-4935-9375-ad1f1826d72d/type-definition/type_:BaseModelsUserResponse" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitions.json b/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitions.json index f240845996..24fe7b2c37 100644 --- a/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitions.json +++ b/packages/fdr-sdk/src/__test__/output/humanloop/apiDefinitions.json @@ -472,6 +472,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -1232,6 +1233,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -1895,6 +1897,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -2657,6 +2660,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -3383,6 +3387,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -4141,6 +4146,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -5106,6 +5112,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -5711,6 +5718,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -6410,6 +6418,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -7017,6 +7026,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -7578,6 +7588,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -8181,6 +8192,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -8596,6 +8608,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -8749,6 +8762,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -8873,6 +8887,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -8998,6 +9013,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -9182,6 +9198,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -9461,6 +9478,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -9657,6 +9675,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -9862,6 +9881,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -10049,6 +10069,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -10234,6 +10255,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -10469,6 +10491,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -10685,6 +10708,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -10834,6 +10858,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11003,6 +11028,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11260,6 +11286,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11392,6 +11419,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11521,6 +11549,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11651,6 +11680,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11823,6 +11853,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -12004,6 +12035,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -12171,6 +12203,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -12366,6 +12399,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -12639,6 +12673,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -12920,6 +12955,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -13205,6 +13241,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -13444,6 +13481,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -13825,6 +13863,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -14107,6 +14146,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -14430,6 +14470,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -14596,6 +14637,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -14888,6 +14930,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -15121,6 +15164,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -15328,6 +15372,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -15563,6 +15608,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -15780,6 +15826,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -16043,6 +16090,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -16252,6 +16300,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -16379,6 +16428,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -16502,6 +16552,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -16770,6 +16821,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -17040,6 +17092,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -17670,6 +17723,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -17832,6 +17886,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -18043,6 +18098,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -18159,6 +18215,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -18292,6 +18349,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -18539,6 +18597,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -18669,6 +18728,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -18790,6 +18850,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -18956,6 +19017,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -19139,6 +19201,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -19349,6 +19412,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -19537,6 +19601,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -19701,6 +19766,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -31569,6 +31635,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -34445,6 +34512,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -36519,6 +36587,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -39085,6 +39154,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -41478,6 +41548,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -42224,6 +42295,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -43479,6 +43551,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -43798,6 +43871,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -44075,6 +44149,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -44453,6 +44528,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -44825,6 +44901,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -45190,6 +45267,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -45754,6 +45832,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -46134,6 +46213,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -46391,6 +46471,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -47162,6 +47243,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -48400,6 +48482,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -49265,6 +49348,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -49769,6 +49853,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -50338,6 +50423,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -50626,6 +50712,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -50903,6 +50990,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -51250,6 +51338,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -51591,6 +51680,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -51925,6 +52015,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -52458,6 +52549,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -52770,6 +52862,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -53028,6 +53121,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -53380,6 +53474,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -53874,6 +53969,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -54966,6 +55062,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -55287,6 +55384,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -55563,6 +55661,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -55975,6 +56074,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -56343,6 +56443,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -56667,6 +56768,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -57059,6 +57161,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -57492,6 +57595,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -57804,6 +57908,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -58062,6 +58167,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -58470,6 +58576,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -58875,6 +58982,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -60538,6 +60646,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -60832,6 +60941,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -61109,6 +61219,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -61462,6 +61573,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -61807,6 +61919,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -62170,6 +62283,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -62488,6 +62602,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -62746,6 +62861,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -63521,6 +63637,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -65701,6 +65818,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -66065,6 +66183,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -66360,6 +66479,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -66848,6 +66968,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -67313,6 +67434,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -68261,6 +68383,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -69144,6 +69267,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -69840,6 +69964,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -70232,6 +70357,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -70665,6 +70791,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -71053,6 +71180,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -71310,6 +71438,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -71638,6 +71767,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -72315,6 +72445,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -72765,6 +72896,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -73224,6 +73356,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -73931,6 +74064,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -74261,6 +74395,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -74599,6 +74734,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -75356,6 +75492,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -75735,6 +75872,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -76045,6 +76183,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -76638,6 +76777,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -77059,6 +77199,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -77288,6 +77429,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", diff --git a/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-8b03e44c-d4e2-4613-a138-e25b8c65c3cb.json b/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-8b03e44c-d4e2-4613-a138-e25b8c65c3cb.json index 5ce036eef3..d2aed8f27e 100644 --- a/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-8b03e44c-d4e2-4613-a138-e25b8c65c3cb.json +++ b/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-8b03e44c-d4e2-4613-a138-e25b8c65c3cb.json @@ -2,94 +2,161 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools/query/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools/query/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools/query/restrict_to_most_recent", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/request/object/property/name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/request/object/property/version_description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/request/object/property/description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/request/object/property/parameters", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/request/object/property/fallback_content", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/request", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/query/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/query/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/query/restrict_to_most_recent", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/request/object/property/version_description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/request/object/property/description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/request/object/property/parameters", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/request/object/property/fallback_content", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/request", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/request/object/property/name", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/request", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version/path/version", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool-version/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool-version/path/version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool-version/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool-version/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool-version/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool-version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/path/version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/request/object/property/version_description", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/request", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts/query/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts/query/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts/query/restrict_to_most_recent", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/request/object/property/name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/request/object/property/version_description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/request/object/property/text", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/request", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/query/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/query/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/query/restrict_to_most_recent", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/request/object/property/version_description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/request/object/property/text", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/request", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/request/object/property/name", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/request", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version/path/version", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt-version/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt-version/path/version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt-version/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt-version/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt-version/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt-version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/path/version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/request/object/property/version_description", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/request", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs/query/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs/query/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs/query/restrict_to_most_recent", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request/object/property/name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request/object/property/version_description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request/object/property/prompt", @@ -97,14 +164,22 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request/object/property/language_model", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request/object/property/tools", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request/object/property/builtin_tools", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/query/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/query/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/query/restrict_to_most_recent", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/request/object/property/version_description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/request/object/property/prompt", @@ -112,52 +187,90 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/request/object/property/language_model", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/request/object/property/tools", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/request/object/property/builtin_tools", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/request", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/request/object/property/name", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/request", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version/path/version", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config-version/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config-version/path/version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config-version/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config-version/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config-version/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config-version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/path/version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/request/object/property/version_description", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/request/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/request", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats/query/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats/query/page_size", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events/query/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events/query/page_number", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups/query/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups/query/page_size", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/path/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/query/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/query/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/query/ascending_order", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/response", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/example/0/snippet/curl/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/example/0/snippet/typescript/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/query/access_token", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/query/config_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/query/config_version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/query/resumed_chat_group_id", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/message/server/subscribe/body", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/message/server/subscribe", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/message/client/publish/body", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/message/client/publish", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/example/0", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent/shape/undiscriminatedUnion/variant/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent/shape/undiscriminatedUnion/variant/1", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent/shape/undiscriminatedUnion/variant/2", @@ -168,6 +281,8 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent/shape/undiscriminatedUnion/variant/7", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent/shape/undiscriminatedUnion/variant/8", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent/shape/undiscriminatedUnion/variant/9", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent/shape/undiscriminatedUnion/variant/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent/shape/undiscriminatedUnion/variant/1", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent/shape/undiscriminatedUnion/variant/2", @@ -176,6 +291,8 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent/shape/undiscriminatedUnion/variant/5", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent/shape/undiscriminatedUnion/variant/6", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent/shape/undiscriminatedUnion/variant/7", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape/object/property/tool_type", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape/object/property/version", @@ -187,6 +304,9 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape/object/property/fallback_content", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape/object/property/description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape/object/property/parameters", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape/object/property/version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape/object/property/version_type", @@ -195,27 +315,52 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape/object/property/created_on", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape/object/property/modified_on", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape/object/property/text", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedBuiltinTool/shape/object/property/name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedBuiltinTool/shape/object/property/fallback_content", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedBuiltinTool/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedBuiltinTool/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedBuiltinTool", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModelModelProvider/shape/enum/value/OPEN_AI", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModelModelProvider/shape/enum/value/CUSTOM_LANGUAGE_MODEL", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModelModelProvider/shape/enum/value/ANTHROPIC", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModelModelProvider/shape/enum/value/FIREWORKS", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModelModelProvider/shape/enum/value/GROQ", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModelModelProvider/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModelModelProvider", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModel/shape/object/property/model_provider", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModel/shape/object/property/model_resource", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModel/shape/object/property/temperature", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModel/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModel/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModel", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedPromptSpec/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedPromptSpec/shape/object/property/version", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedPromptSpec/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedPromptSpec/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedPromptSpec", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedUserDefinedToolSpec/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedUserDefinedToolSpec/shape/object/property/version", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedUserDefinedToolSpec/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedUserDefinedToolSpec/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedUserDefinedToolSpec", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoiceName/shape/enum/value/ITO", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoiceName/shape/enum/value/DACHER", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoiceName/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoiceName", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoice/shape/object/property/provider", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoice/shape/object/property/name", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoice/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoice/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoice", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnBuiltinTool/shape/object/property/tool_type", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnBuiltinTool/shape/object/property/name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnBuiltinTool/shape/object/property/fallback_content", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnBuiltinTool/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnBuiltinTool/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnBuiltinTool", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape/object/property/version", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape/object/property/version_description", @@ -227,20 +372,38 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape/object/property/language_model", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape/object/property/tools", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape/object/property/builtin_tools", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnLanguageModel/shape/object/property/model_provider", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnLanguageModel/shape/object/property/model_resource", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnLanguageModel/shape/object/property/temperature", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnLanguageModel/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnLanguageModel/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnLanguageModel", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnVoice/shape/object/property/provider", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnVoice/shape/object/property/name", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnVoice/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnVoice/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnVoice", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedUserDefinedTools/shape/object/property/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedUserDefinedTools/shape/object/property/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedUserDefinedTools/shape/object/property/tools_page", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedUserDefinedTools/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedUserDefinedTools/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedUserDefinedTools", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedPrompts/shape/object/property/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedPrompts/shape/object/property/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedPrompts/shape/object/property/prompts_page", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedPrompts/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedPrompts/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedPrompts", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedConfigs/shape/object/property/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedConfigs/shape/object/property/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedConfigs/shape/object/property/configs_page", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedConfigs/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedConfigs/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedConfigs", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape/object/property/chat_group_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape/object/property/tag", @@ -250,11 +413,20 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape/object/property/event_count", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape/object/property/metadata", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape/object/property/config", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfigSpec/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfigSpec/shape/object/property/version", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfigSpec/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfigSpec/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfigSpec", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChats/shape/object/property/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChats/shape/object/property/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChats/shape/object/property/chats_page", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChats/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChats/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChats", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape/object/property/chat_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape/object/property/timestamp", @@ -263,6 +435,9 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape/object/property/message_text", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape/object/property/emotion_features", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape/object/property/metadata", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape/object/property/chat_group_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape/object/property/tag", @@ -274,18 +449,30 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape/object/property/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape/object/property/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape/object/property/config", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount/shape/object/property/timestamp", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount/shape/object/property/total_user_active_chats", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount/shape/object/property/max_allowed_active_chats", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount/shape/object/property/more_active_chats_allowed", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount/shape/object/property/per_tag", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCountPerTag/shape/object/property/tag", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCountPerTag/shape/object/property/total_tag_active_chats", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCountPerTag/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCountPerTag/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCountPerTag", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents/shape/object/property/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents/shape/object/property/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents/shape/object/property/pagination_direction", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents/shape/object/property/events_page", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape/object/property/first_start_timestamp", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape/object/property/most_recent_start_timestamp", @@ -294,53 +481,98 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape/object/property/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape/object/property/chats_page", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape/object/property/active", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape/object/property/first_start_timestamp", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape/object/property/most_recent_start_timestamp", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape/object/property/most_recent_chat_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape/object/property/num_chats", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape/object/property/active", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChatGroups/shape/object/property/page_number", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChatGroups/shape/object/property/page_size", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChatGroups/shape/object/property/chat_groups_page", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChatGroups/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChatGroups/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChatGroups", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantEnd/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantEnd/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantEnd/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantEnd/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantEnd", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantInput/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantInput/shape/object/property/text", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantInput/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantInput/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantInput/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantInput", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape/object/property/from_text", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape/object/property/message", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape/object/property/models", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioConfiguration/shape/object/property/channels", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioConfiguration/shape/object/property/encoding", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioConfiguration/shape/object/property/sample_rate", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioConfiguration/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioConfiguration/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioConfiguration", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioInput/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioInput/shape/object/property/data", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioInput/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioInput/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioInput/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioInput", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput/shape/object/property/data", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput/shape/object/property/id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltInTool/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltInTool", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltinToolConfig/shape/object/property/fallback_content", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltinToolConfig/shape/object/property/name", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltinToolConfig/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltinToolConfig/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltinToolConfig", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessageToolResult/shape/undiscriminatedUnion/variant/0", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessageToolResult/shape/undiscriminatedUnion/variant/1", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessageToolResult/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessageToolResult", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage/shape/object/property/content", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage/shape/object/property/role", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage/shape/object/property/tool_call", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage/shape/object/property/tool_result", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata/shape/object/property/chat_group_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata/shape/object/property/chat_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Context/shape/object/property/text", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Context/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Context/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Context/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Context", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ContextType/shape/enum/value/editable", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ContextType/shape/enum/value/persistent", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ContextType/shape/enum/value/temporary", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ContextType/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ContextType", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape/object/property/Admiration", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape/object/property/Adoration", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape/object/property/Aesthetic Appreciation", @@ -389,24 +621,51 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape/object/property/Sympathy", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape/object/property/Tiredness", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape/object/property/Triumph", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Encoding/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Encoding", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError/shape/object/property/code", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError/shape/object/property/message", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError/shape/object/property/slug", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ErrorLevel/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ErrorLevel", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Inference/shape/object/property/prosody", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Inference/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Inference/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Inference", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:MillisecondInterval/shape/object/property/begin", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:MillisecondInterval/shape/object/property/end", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:MillisecondInterval/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:MillisecondInterval/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:MillisecondInterval", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PauseAssistantMessage/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PauseAssistantMessage/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PauseAssistantMessage/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PauseAssistantMessage/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PauseAssistantMessage", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ProsodyInference/shape/object/property/scores", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ProsodyInference/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ProsodyInference/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ProsodyInference", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ResumeAssistantMessage/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ResumeAssistantMessage/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ResumeAssistantMessage/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ResumeAssistantMessage/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ResumeAssistantMessage", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Role/shape/enum/value/assistant", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Role/shape/enum/value/system", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Role/shape/enum/value/user", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Role/shape/enum/value/all", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Role/shape/enum/value/tool", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Role/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Role", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape/object/property/audio", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape/object/property/builtin_tools", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape/object/property/custom_session_id", @@ -414,11 +673,17 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape/object/property/system_prompt", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape/object/property/tools", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool/shape/object/property/description", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool/shape/object/property/fallback_content", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool/shape/object/property/name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool/shape/object/property/parameters", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape/object/property/name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape/object/property/parameters", @@ -426,6 +691,9 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape/object/property/tool_call_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape/object/property/tool_type", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape/object/property/code", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape/object/property/content", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape/object/property/custom_session_id", @@ -434,321 +702,53 @@ "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape/object/property/tool_call_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape/object/property/tool_type", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape/object/property/content", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape/object/property/tool_call_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape/object/property/tool_name", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape/object/property/tool_type", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolType/shape/enum/value/builtin", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolType/shape/enum/value/function", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolType/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolType", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInput/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInput/shape/object/property/text", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInput/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInput/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInput/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInput", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInterruption/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInterruption/shape/object/property/time", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInterruption/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInterruption/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInterruption/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInterruption", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserMessage/shape/object/property/custom_session_id", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserMessage/shape/object/property/from_text", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserMessage/shape/object/property/message", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserMessage/shape/object/property/models", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserMessage/shape/object/property/time", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserMessage/shape/object/property/type", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TtsInput/shape/object/property/type", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TextInput/shape/object/property/type", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:FunctionCallResponseInput/shape/object/property/type", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/response", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/message/server/subscribe/body", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/message/client/publish/body", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltInTool/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Encoding/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ErrorLevel/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/request/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedBuiltinTool/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModel/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedPromptSpec/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedUserDefinedToolSpec/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoice/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnBuiltinTool/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnLanguageModel/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnVoice/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedUserDefinedTools/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedPrompts/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedConfigs/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfigSpec/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChats/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCountPerTag/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChatGroups/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantEnd/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantInput/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioConfiguration/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioInput/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltinToolConfig/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Context/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Inference/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:MillisecondInterval/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PauseAssistantMessage/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ProsodyInference/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ResumeAssistantMessage/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInput/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInterruption/shape/object", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserMessage/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TtsInput/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TextInput/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:FunctionCallResponseInput/shape/object", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/message/server/subscribe", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat/message/client/publish", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModelModelProvider/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoiceName/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltInTool", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessageToolResult/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ContextType/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Encoding", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ErrorLevel", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Role/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolType/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool-version/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt-version/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config-version/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events/example/0", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description/request", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:SubscribeEvent", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_chat:PublishEvent", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedBuiltinTool/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModelModelProvider", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModel/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedPromptSpec/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedUserDefinedToolSpec/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoiceName", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoice/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnBuiltinTool/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnLanguageModel/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnVoice/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedUserDefinedTools/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedPrompts/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedConfigs/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfigSpec/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChats/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCountPerTag/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChatGroups/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantEnd/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantInput/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioConfiguration/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioInput/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltinToolConfig/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessageToolResult", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Context/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ContextType", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Inference/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:MillisecondInterval/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PauseAssistantMessage/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ProsodyInference/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ResumeAssistantMessage/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Role", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolType", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInput/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInterruption/shape", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserMessage/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TtsInput/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TextInput/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:FunctionCallResponseInput/shape", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/websocket/subpackage_chat.chat", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnUserDefinedTool", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPrompt", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedBuiltinTool", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedLanguageModel", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedPromptSpec", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedUserDefinedToolSpec", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PostedVoice", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnBuiltinTool", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfig", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnLanguageModel", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnVoice", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedUserDefinedTools", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedPrompts", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedConfigs", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChat", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnConfigSpec", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChats", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatEvent", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatPagedEvents", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCount", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnActiveChatCountPerTag", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedEvents", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroupPagedChats", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnChatGroup", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ReturnPagedChatGroups", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantEnd", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantInput", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AssistantMessage", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioConfiguration", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioInput", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:AudioOutput", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:BuiltinToolConfig", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMessage", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ChatMetadata", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Context", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:EmotionScores", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:WebSocketError", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Inference", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:MillisecondInterval", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:PauseAssistantMessage", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ProsodyInference", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ResumeAssistantMessage", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:SessionSettings", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:Tool", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolCallMessage", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolErrorMessage", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:ToolResponseMessage", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInput", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserInterruption", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:UserMessage", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TtsInput/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TtsInput/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TtsInput/shape", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TtsInput", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TextInput/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TextInput/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TextInput/shape", "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:TextInput", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:FunctionCallResponseInput", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tools", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.list-tool-versions", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.create-tool-version", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-name", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.get-tool-version", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.delete-tool-version", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_tools.update-tool-description", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompts", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.list-prompt-versions", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.create-prompt-verison", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-name", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.get-prompt-version", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.delete-prompt-version", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_prompts.update-prompt-description", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-configs", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.list-config-versions", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.create-config-version", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-name", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.get-config-version", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.delete-config-version", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_configs.update-config-description", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chats", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chats.list-chat-events", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-groups", - "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/endpoint/endpoint_chatGroups.list-chat-group-events" + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:FunctionCallResponseInput/shape/object/property/type", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:FunctionCallResponseInput/shape/object", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:FunctionCallResponseInput/shape", + "8b03e44c-d4e2-4613-a138-e25b8c65c3cb/type-definition/type_:FunctionCallResponseInput" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-bcb7826e-ffd6-4440-b3de-6bf37440c3e2.json b/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-bcb7826e-ffd6-4440-b3de-6bf37440c3e2.json index 7712091fdb..65fcb322fc 100644 --- a/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-bcb7826e-ffd6-4440-b3de-6bf37440c3e2.json +++ b/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-bcb7826e-ffd6-4440-b3de-6bf37440c3e2.json @@ -2,108 +2,203 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files/query/page_number", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files/query/page_size", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files/query/shared_assets", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files/request", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request/formdata/field/file/file/file", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request/formdata/field/file", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request/formdata/field/attributes/file/attributes", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request/formdata/field/attributes", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request/formdata", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file/path/id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.delete-file/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.delete-file/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.delete-file/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.delete-file/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.delete-file", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name/query/name", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file-predictions/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file-predictions/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file-predictions/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file-predictions/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file-predictions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/query/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/query/page_number", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/query/page_size", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/query/shared_assets", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata/field/name/property/name", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata/field/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata/field/feature_types/file/feature_types", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata/field/feature_types", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata/field/labels_file/file/labels_file", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata/field/labels_file", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset/path/id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request/formdata/field/feature_types/file/feature_types", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request/formdata/field/feature_types", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request/formdata/field/labels_file/file/labels_file", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request/formdata/field/labels_file", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request/formdata", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.delete-dataset/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.delete-dataset/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.delete-dataset/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.delete-dataset/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.delete-dataset", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/query/page_number", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/query/page_size", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/query/shared_assets", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/query/page_number", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/query/page_size", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/query/shared_assets", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset-version/path/id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset-version/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset-version/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset-version/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset-version/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset-version", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/query/page_number", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/query/page_size", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/query/shared_assets", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/query/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/query/page_number", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/query/page_size", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/query/shared_assets", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-details/path/id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-details/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-details/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-details/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-details/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-details", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name/query/name", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/query/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/query/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/query/version", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/query/shared_assets", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version/path/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version/query/shared_assets", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description/path/id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description/request", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job/request", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job/request", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job/response", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job/example/0/snippet/curl/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job/example/0/snippet/typescript/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job/example/0", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AttributeFilter/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AttributeFilter/shape/object/property/value", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AttributeFilter/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AttributeFilter/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AttributeFilter", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput/shape/object/property/uri", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput/shape/object/property/hume_storage", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput/shape/object/property/data_type", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributesInput/shape/object/property/file", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributesInput/shape/object/property/attributes", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributesInput/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributesInput/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributesInput", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape/object/property/uri", @@ -120,13 +215,23 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape/object/property/is_owned_by_reader", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape/object/property/is_linked_to_publicly_shared", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape/object/property/is_linked_to_hume_model", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributes/shape/object/property/file", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributes/shape/object/property/attributes", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributes/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributes/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributes", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Unit/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Unit", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionFeatureTypesValue/shape/enum/value/CATEGORICAL", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionFeatureTypesValue/shape/enum/value/NUMERIC", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionFeatureTypesValue/shape/enum/value/TEXT", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionFeatureTypesValue/shape/enum/value/DATETIME", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionFeatureTypesValue/shape/enum/value/UNDEFINED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionFeatureTypesValue/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionFeatureTypesValue", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape/object/property/user_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape/object/property/labels_file_uri", @@ -134,19 +239,30 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape/object/property/dataset_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape/object/property/dataset_version", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape/object/property/created_on", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset/shape/object/property/latest_version", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset/shape/object/property/modified_on", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset/shape/object/property/metadata", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInputFeatureTypesValue/shape/enum/value/CATEGORICAL", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInputFeatureTypesValue/shape/enum/value/NUMERIC", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInputFeatureTypesValue/shape/enum/value/TEXT", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInputFeatureTypesValue/shape/enum/value/DATETIME", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInputFeatureTypesValue/shape/enum/value/UNDEFINED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInputFeatureTypesValue/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInputFeatureTypesValue", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInput/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInput/shape/object/property/labels_file_uri", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInput/shape/object/property/feature_types", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInput/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInput/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInput", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape/object/property/created_on", @@ -156,12 +272,17 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape/object/property/archived", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape/object/property/latest_version", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape/object/property/is_publicly_shared", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType/shape/enum/value/video", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType/shape/enum/value/audio", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType/shape/enum/value/video_no_audio", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType/shape/enum/value/image", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType/shape/enum/value/text", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType/shape/enum/value/mediapipe_facemesh", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape/object/property/model_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape/object/property/user_id", @@ -176,8 +297,14 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape/object/property/target_feature", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape/object/property/task_type", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape/object/property/training_job_id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionTag/shape/object/property/key", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionTag/shape/object/property/value", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionTag/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionTag/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionTag", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape/object/property/content", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape/object/property/pageable", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape/object/property/total", @@ -190,16 +317,28 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape/object/property/first", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape/object/property/number_of_elements", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape/object/property/empty", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape/object/property/offset", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape/object/property/sort", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape/object/property/paged", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape/object/property/unpaged", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape/object/property/page_number", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape/object/property/page_size", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortObject/shape/object/property/empty", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortObject/shape/object/property/sorted", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortObject/shape/object/property/unsorted", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortObject/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortObject/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortObject", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JsonObject/shape/object/property/empty", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JsonObject/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JsonObject/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JsonObject", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape/object/property/content", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape/object/property/pageable", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape/object/property/total", @@ -212,6 +351,9 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape/object/property/first", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape/object/property/number_of_elements", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape/object/property/empty", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape/object/property/content", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape/object/property/pageable", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape/object/property/total", @@ -224,6 +366,9 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape/object/property/first", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape/object/property/number_of_elements", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape/object/property/empty", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape/object/property/content", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape/object/property/pageable", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape/object/property/total", @@ -236,6 +381,9 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape/object/property/first", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape/object/property/number_of_elements", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape/object/property/empty", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape/object/property/user_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape/object/property/labels_file_uri", @@ -244,6 +392,11 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape/object/property/dataset_version", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape/object/property/created_on", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape/object/property/is_most_recent_version", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Alternative/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Alternative", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag/shape/enum/value/zh", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag/shape/enum/value/da", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag/shape/enum/value/nl", @@ -273,51 +426,104 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag/shape/enum/value/ta", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag/shape/enum/value/tr", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag/shape/enum/value/uk", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox/shape/object/property/x", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox/shape/object/property/y", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox/shape/object/property/w", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox/shape/object/property/h", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BurstPrediction/shape/object/property/time", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BurstPrediction/shape/object/property/emotions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BurstPrediction/shape/object/property/descriptions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BurstPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BurstPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BurstPrediction", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Classification/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Classification", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedEmbeddingGeneration/shape/object/property/created_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedEmbeddingGeneration/shape/object/property/started_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedEmbeddingGeneration/shape/object/property/ended_timestamp_ms", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedEmbeddingGeneration/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedEmbeddingGeneration/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedEmbeddingGeneration", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference/shape/object/property/created_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference/shape/object/property/started_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference/shape/object/property/ended_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference/shape/object/property/num_predictions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference/shape/object/property/num_errors", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference/shape/object/property/created_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference/shape/object/property/started_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference/shape/object/property/ended_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference/shape/object/property/num_predictions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference/shape/object/property/num_errors", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining/shape/object/property/created_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining/shape/object/property/started_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining/shape/object/property/ended_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining/shape/object/property/custom_model", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining/shape/object/property/alternatives", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelPrediction/shape/object/property/output", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelPrediction/shape/object/property/error", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelPrediction/shape/object/property/task_type", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelRequest/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelRequest/shape/object/property/description", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelRequest/shape/object/property/tags", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelRequest/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelRequest/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelRequest", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Dataset/shape/undiscriminatedUnion/variant/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Dataset/shape/undiscriminatedUnion/variant/1", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Dataset/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Dataset", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetId/shape/object/property/id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetId/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetId/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetId", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionId/shape/object/property/version_id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionId/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionId/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionId", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DescriptionsScore/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DescriptionsScore/shape/object/property/score", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DescriptionsScore/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DescriptionsScore/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DescriptionsScore", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Direction/shape/enum/value/asc", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Direction/shape/enum/value/desc", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Direction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Direction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmbeddingGenerationBaseRequest/shape/object/property/registry_file_details", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmbeddingGenerationBaseRequest/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmbeddingGenerationBaseRequest/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmbeddingGenerationBaseRequest", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmotionScore/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmotionScore/shape/object/property/score", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmotionScore/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmotionScore/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmotionScore", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Error/shape/object/property/message", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Error/shape/object/property/file", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Error/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Error/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Error", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EvaluationArgs/shape/object/property/validation", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EvaluationArgs/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EvaluationArgs/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EvaluationArgs", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape/object/property/fps_pred", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape/object/property/prob_threshold", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape/object/property/identify_faces", @@ -325,6 +531,9 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape/object/property/facs", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape/object/property/descriptions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape/object/property/save_faces", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape/object/property/frame", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape/object/property/time", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape/object/property/prob", @@ -332,34 +541,72 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape/object/property/emotions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape/object/property/facs", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape/object/property/descriptions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacemeshPrediction/shape/object/property/emotions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacemeshPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacemeshPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacemeshPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacsScore/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacsScore/shape/object/property/score", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacsScore/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacsScore/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacsScore", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed/shape/object/property/created_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed/shape/object/property/started_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed/shape/object/property/ended_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed/shape/object/property/message", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:File/shape/object/property/filename", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:File/shape/object/property/content_type", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:File/shape/object/property/md5sum", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:File/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:File/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:File", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Granularity/shape/enum/value/word", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Granularity/shape/enum/value/sentence", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Granularity/shape/enum/value/utterance", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Granularity/shape/enum/value/conversational_turn", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Granularity/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Granularity", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsBurstPrediction/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsBurstPrediction/shape/object/property/predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsBurstPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsBurstPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsBurstPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacePrediction/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacePrediction/shape/object/property/predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacePrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacePrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacePrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape/object/property/predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacemeshPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsLanguagePrediction/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsLanguagePrediction/shape/object/property/predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsLanguagePrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsLanguagePrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsLanguagePrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsNerPrediction/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsNerPrediction/shape/object/property/predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsNerPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsNerPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsNerPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsProsodyPrediction/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsProsodyPrediction/shape/object/property/predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsProsodyPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsProsodyPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsProsodyPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InProgress/shape/object/property/created_timestamp_ms", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InProgress/shape/object/property/started_timestamp_ms", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InProgress/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InProgress/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InProgress", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape/object/property/models", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape/object/property/transcription", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape/object/property/urls", @@ -367,8 +614,14 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape/object/property/text", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape/object/property/callback_url", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape/object/property/notify", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferencePrediction/shape/object/property/file", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferencePrediction/shape/object/property/models", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferencePrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferencePrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferencePrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape/object/property/models", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape/object/property/transcription", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape/object/property/urls", @@ -377,32 +630,59 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape/object/property/callback_url", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape/object/property/notify", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape/object/property/files", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceResults/shape/object/property/predictions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceResults/shape/object/property/errors", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult/shape/object/property/source", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceResults/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceResults/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceResults", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult/shape/object/property/source", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult/shape/object/property/results", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult/shape/object/property/error", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration/shape/object/property/job_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration/shape/object/property/user_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration/shape/object/property/request", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration/shape/object/property/state", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference/shape/object/property/job_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference/shape/object/property/user_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference/shape/object/property/request", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference/shape/object/property/state", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference/shape/object/property/job_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference/shape/object/property/user_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference/shape/object/property/request", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference/shape/object/property/state", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining/shape/object/property/job_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining/shape/object/property/user_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining/shape/object/property/request", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining/shape/object/property/state", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobId/shape/object/property/job_id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobId/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobId/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobId", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language/shape/object/property/granularity", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language/shape/object/property/sentiment", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language/shape/object/property/toxicity", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language/shape/object/property/identify_speakers", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape/object/property/text", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape/object/property/position", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape/object/property/time", @@ -411,19 +691,31 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape/object/property/emotions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape/object/property/sentiment", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape/object/property/toxicity", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape/object/property/face", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape/object/property/burst", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape/object/property/prosody", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape/object/property/language", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape/object/property/ner", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape/object/property/facemesh", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape/object/property/face", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape/object/property/burst", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape/object/property/prosody", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape/object/property/language", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape/object/property/ner", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape/object/property/facemesh", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Ner/shape/object/property/identify_speakers", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Ner/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Ner/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Ner", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape/object/property/entity", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape/object/property/position", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape/object/property/entity_confidence", @@ -434,67 +726,246 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape/object/property/confidence", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape/object/property/speaker_confidence", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape/object/property/emotions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Null/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Null", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PositionInterval/shape/object/property/begin", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PositionInterval/shape/object/property/end", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PositionInterval/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PositionInterval/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PositionInterval", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape/object/property/metadata", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape/object/property/grouped_predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullBurstPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacePrediction/shape/object/property/metadata", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacePrediction/shape/object/property/grouped_predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacePrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacePrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacePrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape/object/property/metadata", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape/object/property/grouped_predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacemeshPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape/object/property/metadata", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape/object/property/grouped_predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape/object/property/metadata", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape/object/property/grouped_predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape/object/property/metadata", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape/object/property/grouped_predictions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Prosody/shape/object/property/granularity", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Prosody/shape/object/property/window", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Prosody/shape/object/property/identify_speakers", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Prosody/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Prosody/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Prosody", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction/shape/object/property/text", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction/shape/object/property/time", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction/shape/object/property/confidence", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction/shape/object/property/speaker_confidence", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction/shape/object/property/emotions", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Queued/shape/object/property/created_timestamp_ms", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Queued/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Queued/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Queued", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:RegistryFileDetail/shape/object/property/file_id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:RegistryFileDetail/shape/object/property/file_url", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:RegistryFileDetail/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:RegistryFileDetail/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:RegistryFileDetail", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Regression/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Regression", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SentimentScore/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SentimentScore/shape/object/property/score", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SentimentScore/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SentimentScore/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SentimentScore", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortBy/shape/enum/value/created", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortBy/shape/enum/value/started", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortBy/shape/enum/value/ended", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortBy/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortBy", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source/shape/discriminatedUnion/variant/url", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source/shape/discriminatedUnion/variant/file", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source/shape/discriminatedUnion/variant/text", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceFile/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceFile/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceFile", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceTextSource/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceTextSource/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceTextSource", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceUrl/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceUrl/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceUrl", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Url/shape/object/property/url", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Url/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Url/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Url", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/QUEUED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/IN_PROGRESS", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/COMPLETED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/FAILED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationFailed/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationFailed/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationFailed", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationInProgress/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationInProgress/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationInProgress", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationQueued/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationQueued/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationQueued", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape/discriminatedUnion/variant/QUEUED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape/discriminatedUnion/variant/IN_PROGRESS", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape/discriminatedUnion/variant/COMPLETED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape/discriminatedUnion/variant/FAILED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceCompletedInference/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceCompletedInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceCompletedInference", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceFailed/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceFailed/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceFailed", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceInProgress/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceInProgress/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceInProgress", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceQueued/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceQueued/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceQueued", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/QUEUED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/IN_PROGRESS", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/COMPLETED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/FAILED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceCompletedTlInference/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceCompletedTlInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceCompletedTlInference", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceFailed/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceFailed/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceFailed", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceInProgress/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceInProgress/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceInProgress", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceQueued/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceQueued/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceQueued", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/QUEUED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/IN_PROGRESS", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/COMPLETED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/FAILED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingCompletedTraining/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingCompletedTraining/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingCompletedTraining", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingFailed/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingFailed/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingFailed", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingInProgress/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingInProgress/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingInProgress", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingQueued/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingQueued/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingQueued", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Status/shape/enum/value/QUEUED", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Status/shape/enum/value/IN_PROGRESS", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Status/shape/enum/value/COMPLETED", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Status/shape/enum/value/FAILED", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Status/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Status", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferencePrediction/shape/object/property/file", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferencePrediction/shape/object/property/file_type", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferencePrediction/shape/object/property/custom_models", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferencePrediction/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferencePrediction/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferencePrediction", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceResults/shape/object/property/predictions", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceResults/shape/object/property/errors", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceResults/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceResults/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceResults", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceSourcePredictResult/shape/object/property/source", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceSourcePredictResult/shape/object/property/results", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceSourcePredictResult/shape/object/property/error", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceSourcePredictResult/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceSourcePredictResult/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceSourcePredictResult", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Tag/shape/object/property/key", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Tag/shape/object/property/value", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Tag/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Tag/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Tag", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Target/shape/undiscriminatedUnion/variant/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Target/shape/undiscriminatedUnion/variant/1", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Target/shape/undiscriminatedUnion/variant/2", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Target/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Target", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Task/shape/discriminatedUnion/variant/classification", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Task/shape/discriminatedUnion/variant/regression", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Task/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Task", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskClassification/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskClassification/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskClassification", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskRegression/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskRegression/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskRegression", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TextSource/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TextSource", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TimeInterval/shape/object/property/begin", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TimeInterval/shape/object/property/end", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TimeInterval/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TimeInterval/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TimeInterval", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest/shape/object/property/custom_model", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest/shape/object/property/urls", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest/shape/object/property/registry_files", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest/shape/object/property/callback_url", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest/shape/object/property/notify", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModel/shape/undiscriminatedUnion/variant/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModel/shape/undiscriminatedUnion/variant/1", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModel/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModel", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelId/shape/object/property/id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelId/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelId/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelId", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelVersionId/shape/object/property/version_id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelVersionId/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelVersionId/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelVersionId", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ToxicityScore/shape/object/property/name", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ToxicityScore/shape/object/property/score", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ToxicityScore/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ToxicityScore/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ToxicityScore", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape/object/property/custom_model", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape/object/property/dataset", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape/object/property/target_feature", @@ -503,537 +974,66 @@ "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape/object/property/alternatives", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape/object/property/callback_url", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape/object/property/notify", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingCustomModel/shape/object/property/id", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingCustomModel/shape/object/property/version_id", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingCustomModel/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingCustomModel/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingCustomModel", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Transcription/shape/object/property/language", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Transcription/shape/object/property/identify_speakers", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Transcription/shape/object/property/confidence_threshold", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Transcription/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Transcription/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Transcription", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TranscriptionMetadata/shape/object/property/confidence", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TranscriptionMetadata/shape/object/property/detected_language", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TranscriptionMetadata/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TranscriptionMetadata/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TranscriptionMetadata", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Type/shape/enum/value/EMBEDDING_GENERATION", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Type/shape/enum/value/INFERENCE", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Type/shape/enum/value/TL_INFERENCE", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Type/shape/enum/value/TRAINING", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Type/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Type", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Unconfigurable/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Unconfigurable", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/EMBEDDING_GENERATION", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/INFERENCE", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/TL_INFERENCE", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/TRAINING", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobEmbeddingGeneration/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobEmbeddingGeneration/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobEmbeddingGeneration", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobInference/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobInference", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTlInference/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTlInference/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTlInference", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTraining/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTraining/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTraining", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionPredictResult/shape/undiscriminatedUnion/variant/0", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionPredictResult/shape/undiscriminatedUnion/variant/1", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionPredictResult/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionPredictResult", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ValidationArgs/shape/object/property/positive_label", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ValidationArgs/shape/object", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ValidationArgs/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ValidationArgs", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:When/shape/enum/value/created_before", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:When/shape/enum/value/created_after", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Window/shape/object/property/length", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Window/shape/object/property/step", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files/request", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset-version/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-details/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description/request", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job/request", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job/request", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job/response", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Unit/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Alternative/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Classification/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Null/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Regression/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source/shape/discriminatedUnion/variant/url", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source/shape/discriminatedUnion/variant/file", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source/shape/discriminatedUnion/variant/text", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceFile/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceTextSource/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceUrl/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/QUEUED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/IN_PROGRESS", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/COMPLETED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/FAILED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationFailed/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationInProgress/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationQueued/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape/discriminatedUnion/variant/QUEUED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape/discriminatedUnion/variant/IN_PROGRESS", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape/discriminatedUnion/variant/COMPLETED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape/discriminatedUnion/variant/FAILED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceCompletedInference/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceFailed/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceInProgress/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceQueued/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/QUEUED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/IN_PROGRESS", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/COMPLETED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/FAILED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceCompletedTlInference/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceFailed/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceInProgress/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceQueued/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/QUEUED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/IN_PROGRESS", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/COMPLETED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/FAILED", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingCompletedTraining/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingFailed/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingInProgress/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingQueued/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Task/shape/discriminatedUnion/variant/classification", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Task/shape/discriminatedUnion/variant/regression", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskClassification/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskRegression/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TextSource/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Unconfigurable/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/EMBEDDING_GENERATION", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/INFERENCE", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/TL_INFERENCE", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/TRAINING", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobEmbeddingGeneration/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobInference/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTlInference/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTraining/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request/formdata/field/file", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request/formdata/field/attributes", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata/field/name", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata/field/feature_types", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata/field/labels_file", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request/formdata/field/feature_types", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request/formdata/field/labels_file", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AttributeFilter/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributesInput/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributes/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInput/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionTag/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortObject/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JsonObject/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BurstPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedEmbeddingGeneration/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelRequest/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetId/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionId/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DescriptionsScore/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmbeddingGenerationBaseRequest/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmotionScore/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Error/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EvaluationArgs/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacemeshPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacsScore/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:File/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsBurstPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacePrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsLanguagePrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsNerPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsProsodyPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InProgress/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferencePrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceResults/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobId/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Ner/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PositionInterval/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacePrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Prosody/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Queued/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:RegistryFileDetail/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SentimentScore/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Url/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferencePrediction/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceResults/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceSourcePredictResult/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Tag/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TimeInterval/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelId/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelVersionId/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ToxicityScore/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingCustomModel/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Transcription/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TranscriptionMetadata/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ValidationArgs/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Window/shape/object", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Unit", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionFeatureTypesValue/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInputFeatureTypesValue/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Alternative", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Classification", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Dataset/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Direction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Granularity/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Null", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Regression", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortBy/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Status/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Target/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TextSource", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModel/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Type/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Unconfigurable", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionPredictResult/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:When/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.delete-file/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file-predictions/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.delete-dataset/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset-version/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-details/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job/example/0", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceFile/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceTextSource/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceUrl/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationFailed/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationInProgress/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationQueued/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceCompletedInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceFailed/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceInProgress/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceQueued/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceCompletedTlInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceFailed/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceInProgress/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceQueued/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingCompletedTraining/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingFailed/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingInProgress/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingQueued/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskClassification/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskRegression/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobEmbeddingGeneration/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTlInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTraining/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request/formdata", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request/formdata", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request/formdata", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AttributeFilter/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributesInput/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributes/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionFeatureTypesValue", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInputFeatureTypesValue", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInput/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionFileType", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionTag/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortObject/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JsonObject/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Bcp47Tag", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BurstPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedEmbeddingGeneration/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelRequest/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Dataset", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetId/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionId/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DescriptionsScore/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Direction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmbeddingGenerationBaseRequest/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmotionScore/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Error/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EvaluationArgs/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacemeshPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacsScore/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:File/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Granularity", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsBurstPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacePrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsLanguagePrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsNerPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsProsodyPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InProgress/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferencePrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceResults/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobId/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Ner/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PositionInterval/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacePrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Prosody/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Queued/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:RegistryFileDetail/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SentimentScore/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortBy", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Url/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Status", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferencePrediction/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceResults/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceSourcePredictResult/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Tag/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Target", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Task/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TimeInterval/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModel", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelId/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelVersionId/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ToxicityScore/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingCustomModel/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Transcription/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TranscriptionMetadata/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Type", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionPredictResult", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ValidationArgs/shape", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:When/shape", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:When", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Window/shape/object/property/length", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Window/shape/object/property/step", + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Window/shape/object", "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Window/shape", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceFile", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceTextSource", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SourceUrl", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationFailed", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationInProgress", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGenerationQueued", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceCompletedInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceFailed", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceInProgress", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInferenceQueued", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceCompletedTlInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceFailed", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceInProgress", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInferenceQueued", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingCompletedTraining", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingFailed", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingInProgress", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTrainingQueued", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskClassification", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TaskRegression", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobEmbeddingGeneration", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTlInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJobJobTraining", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AttributeFilter", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileInput", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributesInput", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:AuthorizedFile", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FileWithAttributes", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersion", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ReturnDataset", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabelsFileUriInput", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModel", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersion", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ExternalModelVersionTag", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelPage", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PageableObject", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SortObject", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JsonObject", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FilePage", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetPage", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionPage", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetLabels", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BoundingBox", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:BurstPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedEmbeddingGeneration", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTlInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CompletedTraining", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelRequest", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetId", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DatasetVersionId", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:DescriptionsScore", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmbeddingGenerationBaseRequest", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EmotionScore", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Error", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:EvaluationArgs", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Face", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacePrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacemeshPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:FacsScore", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Failed", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:File", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsBurstPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacePrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsFacemeshPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsLanguagePrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsNerPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:GroupedPredictionsProsodyPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InProgress", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceBaseRequest", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferencePrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceRequest", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceResults", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:InferenceSourcePredictResult", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobEmbeddingGeneration", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTlInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobTraining", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:JobId", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Language", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:LanguagePrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Models", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ModelsPredictions", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Ner", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:NerPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PositionInterval", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullBurstPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacePrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalNullFacemeshPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Prosody", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ProsodyPrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Queued", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:RegistryFileDetail", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:SentimentScore", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Source", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Url", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateEmbeddingGeneration", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTlInference", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:StateTraining", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferencePrediction", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceResults", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceSourcePredictResult", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Tag", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Task", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TimeInterval", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TlInferenceBaseRequest", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelId", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:CustomModelVersionId", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ToxicityScore", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingBaseRequest", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TrainingCustomModel", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Transcription", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:TranscriptionMetadata", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:UnionJob", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:ValidationArgs", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Window", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.list-files", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.create-files", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file/request", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.delete-file", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.update-file-name", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.get-file-predictions", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-datasets", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset/request", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version/request", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.delete-dataset", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-versions", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-files", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.get-dataset-version", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.list-dataset-version-files", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-models", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-details", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-name", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.list-model-versions", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.get-model-version", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_models.update-model-description", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-training-job", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_jobs.start-custom-models-inference-job", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_files.upload-file", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset", - "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/endpoint/endpoint_datasets.create-dataset-version" + "bcb7826e-ffd6-4440-b3de-6bf37440c3e2/type-definition/type_:Window" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-e810f56e-df97-4af2-bdaa-659077e1948e.json b/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-e810f56e-df97-4af2-bdaa-659077e1948e.json index 5987741df7..38e5960bb1 100644 --- a/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-e810f56e-df97-4af2-bdaa-659077e1948e.json +++ b/packages/fdr-sdk/src/__test__/output/hume/apiDefinitionKeys-e810f56e-df97-4af2-bdaa-659077e1948e.json @@ -6,31 +6,69 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs/query/sort_by", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs/query/direction", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs/query/type", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs/response", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs/example/0/snippet/curl/0", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs/example/0/snippet/typescript/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs/example/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job/request", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job/response", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job/example/0/snippet/curl/0", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job/example/0/snippet/typescript/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job/example/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/path/id", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/response", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/example/0/snippet/curl/0", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/example/0/snippet/typescript/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/example/0", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/example/1/snippet/curl/0", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/example/1/snippet/typescript/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/example/1", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-predictions/path/id", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-predictions/response", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-predictions/example/0/snippet/curl/0", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-predictions/example/0/snippet/typescript/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-predictions/example/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-predictions", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-artifacts/path/id", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-artifacts/response", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-artifacts/example/0/snippet/curl/0", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-artifacts/example/0/snippet/typescript/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-artifacts/example/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-artifacts", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request/formdata/field/json/property/json", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request/formdata/field/json", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request/formdata/field/file/files/file", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request/formdata/field/file", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request/formdata", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/response", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/example/0/snippet/curl/0", "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/example/0/snippet/typescript/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/example/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file", "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/requestHeader/X-Hume-Api-Key", + "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/message/server/subscribe/body", + "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/message/server/subscribe", + "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/message/client/publish/body", + "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/message/client/publish", "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/example/0", + "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstJobDetails/shape/object/property/job_id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstJobDetails/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstJobDetails/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstJobDetails", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurstPredictionsItem/shape/object/property/time", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurstPredictionsItem/shape/object/property/emotions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurstPredictionsItem/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurstPredictionsItem/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurstPredictionsItem", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurst/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurst/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurst/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurst", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape/object/property/frame", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape/object/property/time", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape/object/property/bbox", @@ -39,18 +77,42 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape/object/property/emotions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape/object/property/facs", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape/object/property/descriptions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFace/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFace/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFace/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFace", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemeshPredictionsItem/shape/object/property/emotions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemeshPredictionsItem/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemeshPredictionsItem/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemeshPredictionsItem", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemesh/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemesh/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemesh/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemesh", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem/shape/object/property/text", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem/shape/object/property/position", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem/shape/object/property/emotions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem/shape/object/property/sentiment", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem/shape/object/property/toxicity", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguage/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguage/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguage/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguage", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsodyPredictionsItem/shape/object/property/time", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsodyPredictionsItem/shape/object/property/emotions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsodyPredictionsItem/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsodyPredictionsItem/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsodyPredictionsItem", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsody/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsody/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsody/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsody", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape/object/property/payload_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape/object/property/job_details", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape/object/property/burst", @@ -58,33 +120,59 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape/object/property/facemesh", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape/object/property/language", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape/object/property/prosody", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamErrorJobDetails/shape/object/property/job_id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamErrorJobDetails/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamErrorJobDetails/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamErrorJobDetails", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError/shape/object/property/error", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError/shape/object/property/code", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError/shape/object/property/payload_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError/shape/object/property/job_details", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetailsJobDetails/shape/object/property/job_id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetailsJobDetails/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetailsJobDetails/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetailsJobDetails", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails/shape/object/property/warning", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails/shape/object/property/code", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails/shape/object/property/payload_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails/shape/object/property/job_details", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:SubscribeEvent/shape/undiscriminatedUnion/variant/0", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:SubscribeEvent/shape/undiscriminatedUnion/variant/1", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:SubscribeEvent/shape/undiscriminatedUnion/variant/2", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:SubscribeEvent/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:SubscribeEvent", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape/object/property/facs", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape/object/property/descriptions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape/object/property/identify_faces", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape/object/property/fps_pred", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape/object/property/prob_threshold", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape/object/property/min_face_size", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsLanguage/shape/object/property/sentiment", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsLanguage/shape/object/property/toxicity", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsLanguage/shape/object/property/granularity", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsLanguage/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsLanguage/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsLanguage", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels/shape/object/property/burst", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels/shape/object/property/face", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels/shape/object/property/facemesh", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels/shape/object/property/language", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels/shape/object/property/prosody", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape/object/property/data", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape/object/property/models", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape/object/property/stream_window_ms", @@ -92,6 +180,11 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape/object/property/raw_text", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape/object/property/job_details", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape/object/property/payload_id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Alternative/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Alternative", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag/shape/enum/value/zh", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag/shape/enum/value/da", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag/shape/enum/value/nl", @@ -121,51 +214,104 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag/shape/enum/value/ta", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag/shape/enum/value/tr", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag/shape/enum/value/uk", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox/shape/object/property/x", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox/shape/object/property/y", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox/shape/object/property/w", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox/shape/object/property/h", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BurstPrediction/shape/object/property/time", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BurstPrediction/shape/object/property/emotions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BurstPrediction/shape/object/property/descriptions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BurstPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BurstPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BurstPrediction", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Classification/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Classification", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedEmbeddingGeneration/shape/object/property/created_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedEmbeddingGeneration/shape/object/property/started_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedEmbeddingGeneration/shape/object/property/ended_timestamp_ms", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedEmbeddingGeneration/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedEmbeddingGeneration/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedEmbeddingGeneration", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference/shape/object/property/created_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference/shape/object/property/started_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference/shape/object/property/ended_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference/shape/object/property/num_predictions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference/shape/object/property/num_errors", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference/shape/object/property/created_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference/shape/object/property/started_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference/shape/object/property/ended_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference/shape/object/property/num_predictions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference/shape/object/property/num_errors", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining/shape/object/property/created_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining/shape/object/property/started_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining/shape/object/property/ended_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining/shape/object/property/custom_model", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining/shape/object/property/alternatives", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelPrediction/shape/object/property/output", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelPrediction/shape/object/property/error", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelPrediction/shape/object/property/task_type", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelRequest/shape/object/property/name", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelRequest/shape/object/property/description", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelRequest/shape/object/property/tags", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelRequest/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelRequest/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelRequest", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Dataset/shape/undiscriminatedUnion/variant/0", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Dataset/shape/undiscriminatedUnion/variant/1", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Dataset/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Dataset", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetId/shape/object/property/id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetId/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetId/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetId", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetVersionId/shape/object/property/version_id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetVersionId/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetVersionId/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetVersionId", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DescriptionsScore/shape/object/property/name", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DescriptionsScore/shape/object/property/score", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DescriptionsScore/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DescriptionsScore/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DescriptionsScore", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Direction/shape/enum/value/asc", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Direction/shape/enum/value/desc", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Direction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Direction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmbeddingGenerationBaseRequest/shape/object/property/registry_file_details", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmbeddingGenerationBaseRequest/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmbeddingGenerationBaseRequest/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmbeddingGenerationBaseRequest", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionScore/shape/object/property/name", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionScore/shape/object/property/score", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionScore/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionScore/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionScore", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Error/shape/object/property/message", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Error/shape/object/property/file", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Error/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Error/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Error", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EvaluationArgs/shape/object/property/validation", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EvaluationArgs/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EvaluationArgs/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EvaluationArgs", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape/object/property/fps_pred", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape/object/property/prob_threshold", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape/object/property/identify_faces", @@ -173,6 +319,9 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape/object/property/facs", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape/object/property/descriptions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape/object/property/save_faces", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape/object/property/frame", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape/object/property/time", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape/object/property/prob", @@ -180,34 +329,72 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape/object/property/emotions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape/object/property/facs", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape/object/property/descriptions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacemeshPrediction/shape/object/property/emotions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacemeshPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacemeshPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacemeshPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacsScore/shape/object/property/name", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacsScore/shape/object/property/score", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacsScore/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacsScore/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacsScore", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed/shape/object/property/created_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed/shape/object/property/started_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed/shape/object/property/ended_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed/shape/object/property/message", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:File/shape/object/property/filename", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:File/shape/object/property/content_type", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:File/shape/object/property/md5sum", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:File/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:File/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:File", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Granularity/shape/enum/value/word", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Granularity/shape/enum/value/sentence", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Granularity/shape/enum/value/utterance", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Granularity/shape/enum/value/conversational_turn", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Granularity/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Granularity", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsBurstPrediction/shape/object/property/id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsBurstPrediction/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsBurstPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsBurstPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsBurstPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacePrediction/shape/object/property/id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacePrediction/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacePrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacePrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacePrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape/object/property/id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacemeshPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsLanguagePrediction/shape/object/property/id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsLanguagePrediction/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsLanguagePrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsLanguagePrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsLanguagePrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsNerPrediction/shape/object/property/id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsNerPrediction/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsNerPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsNerPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsNerPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsProsodyPrediction/shape/object/property/id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsProsodyPrediction/shape/object/property/predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsProsodyPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsProsodyPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsProsodyPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InProgress/shape/object/property/created_timestamp_ms", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InProgress/shape/object/property/started_timestamp_ms", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InProgress/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InProgress/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InProgress", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape/object/property/models", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape/object/property/transcription", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape/object/property/urls", @@ -215,8 +402,14 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape/object/property/text", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape/object/property/callback_url", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape/object/property/notify", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferencePrediction/shape/object/property/file", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferencePrediction/shape/object/property/models", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferencePrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferencePrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferencePrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape/object/property/models", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape/object/property/transcription", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape/object/property/urls", @@ -225,32 +418,59 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape/object/property/callback_url", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape/object/property/notify", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape/object/property/files", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceResults/shape/object/property/predictions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceResults/shape/object/property/errors", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceResults/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceResults/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceResults", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceSourcePredictResult/shape/object/property/source", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceSourcePredictResult/shape/object/property/results", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceSourcePredictResult/shape/object/property/error", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceSourcePredictResult/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceSourcePredictResult/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceSourcePredictResult", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration/shape/object/property/job_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration/shape/object/property/user_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration/shape/object/property/request", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration/shape/object/property/state", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference/shape/object/property/job_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference/shape/object/property/user_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference/shape/object/property/request", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference/shape/object/property/state", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference/shape/object/property/job_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference/shape/object/property/user_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference/shape/object/property/request", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference/shape/object/property/state", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining/shape/object/property/job_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining/shape/object/property/user_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining/shape/object/property/request", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining/shape/object/property/state", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobId/shape/object/property/job_id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobId/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobId/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobId", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language/shape/object/property/granularity", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language/shape/object/property/sentiment", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language/shape/object/property/toxicity", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language/shape/object/property/identify_speakers", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape/object/property/text", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape/object/property/position", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape/object/property/time", @@ -259,19 +479,31 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape/object/property/emotions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape/object/property/sentiment", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape/object/property/toxicity", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape/object/property/face", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape/object/property/burst", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape/object/property/prosody", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape/object/property/language", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape/object/property/ner", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape/object/property/facemesh", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape/object/property/face", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape/object/property/burst", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape/object/property/prosody", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape/object/property/language", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape/object/property/ner", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape/object/property/facemesh", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Ner/shape/object/property/identify_speakers", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Ner/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Ner/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Ner", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape/object/property/entity", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape/object/property/position", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape/object/property/entity_confidence", @@ -282,67 +514,246 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape/object/property/confidence", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape/object/property/speaker_confidence", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape/object/property/emotions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Null/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Null", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PositionInterval/shape/object/property/begin", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PositionInterval/shape/object/property/end", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PositionInterval/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PositionInterval/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PositionInterval", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape/object/property/metadata", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape/object/property/grouped_predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullBurstPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacePrediction/shape/object/property/metadata", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacePrediction/shape/object/property/grouped_predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacePrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacePrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacePrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape/object/property/metadata", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape/object/property/grouped_predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacemeshPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape/object/property/metadata", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape/object/property/grouped_predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape/object/property/metadata", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape/object/property/grouped_predictions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape/object/property/metadata", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape/object/property/grouped_predictions", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody/shape/object/property/granularity", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody/shape/object/property/window", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody/shape/object/property/granularity", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody/shape/object/property/window", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody/shape/object/property/identify_speakers", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction/shape/object/property/text", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction/shape/object/property/time", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction/shape/object/property/confidence", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction/shape/object/property/speaker_confidence", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction/shape/object/property/emotions", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Queued/shape/object/property/created_timestamp_ms", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Queued/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Queued/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Queued", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:RegistryFileDetail/shape/object/property/file_id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:RegistryFileDetail/shape/object/property/file_url", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:RegistryFileDetail/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:RegistryFileDetail/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:RegistryFileDetail", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Regression/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Regression", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentScore/shape/object/property/name", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentScore/shape/object/property/score", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentScore/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentScore/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentScore", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SortBy/shape/enum/value/created", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SortBy/shape/enum/value/started", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SortBy/shape/enum/value/ended", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SortBy/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SortBy", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source/shape/discriminatedUnion/variant/url", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source/shape/discriminatedUnion/variant/file", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source/shape/discriminatedUnion/variant/text", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceFile/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceFile/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceFile", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceTextSource/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceTextSource/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceTextSource", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceUrl/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceUrl/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceUrl", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Url/shape/object/property/url", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Url/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Url/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Url", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/QUEUED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/IN_PROGRESS", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/COMPLETED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/FAILED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationFailed/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationFailed/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationFailed", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationInProgress/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationInProgress/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationInProgress", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationQueued/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationQueued/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationQueued", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape/discriminatedUnion/variant/QUEUED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape/discriminatedUnion/variant/IN_PROGRESS", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape/discriminatedUnion/variant/COMPLETED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape/discriminatedUnion/variant/FAILED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceCompletedInference/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceCompletedInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceCompletedInference", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceFailed/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceFailed/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceFailed", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceInProgress/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceInProgress/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceInProgress", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceQueued/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceQueued/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceQueued", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/QUEUED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/IN_PROGRESS", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/COMPLETED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/FAILED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceCompletedTlInference/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceCompletedTlInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceCompletedTlInference", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceFailed/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceFailed/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceFailed", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceInProgress/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceInProgress/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceInProgress", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceQueued/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceQueued/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceQueued", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/QUEUED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/IN_PROGRESS", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/COMPLETED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/FAILED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingCompletedTraining/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingCompletedTraining/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingCompletedTraining", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingFailed/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingFailed/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingFailed", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingInProgress/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingInProgress/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingInProgress", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingQueued/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingQueued/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingQueued", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Status/shape/enum/value/QUEUED", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Status/shape/enum/value/IN_PROGRESS", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Status/shape/enum/value/COMPLETED", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Status/shape/enum/value/FAILED", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Status/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Status", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferencePrediction/shape/object/property/file", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferencePrediction/shape/object/property/file_type", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferencePrediction/shape/object/property/custom_models", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferencePrediction/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferencePrediction/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferencePrediction", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceResults/shape/object/property/predictions", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceResults/shape/object/property/errors", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceResults/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceResults/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceResults", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceSourcePredictResult/shape/object/property/source", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceSourcePredictResult/shape/object/property/results", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceSourcePredictResult/shape/object/property/error", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceSourcePredictResult/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceSourcePredictResult/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceSourcePredictResult", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Tag/shape/object/property/key", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Tag/shape/object/property/value", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Tag/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Tag/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Tag", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Target/shape/undiscriminatedUnion/variant/0", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Target/shape/undiscriminatedUnion/variant/1", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Target/shape/undiscriminatedUnion/variant/2", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Target/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Target", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Task/shape/discriminatedUnion/variant/classification", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Task/shape/discriminatedUnion/variant/regression", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Task/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Task", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskClassification/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskClassification/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskClassification", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskRegression/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskRegression/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskRegression", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextSource/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextSource", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeInterval/shape/object/property/begin", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeInterval/shape/object/property/end", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeInterval/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeInterval/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeInterval", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest/shape/object/property/custom_model", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest/shape/object/property/urls", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest/shape/object/property/registry_files", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest/shape/object/property/callback_url", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest/shape/object/property/notify", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModel/shape/undiscriminatedUnion/variant/0", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModel/shape/undiscriminatedUnion/variant/1", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModel/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModel", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelId/shape/object/property/id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelId/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelId/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelId", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelVersionId/shape/object/property/version_id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelVersionId/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelVersionId/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelVersionId", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityScore/shape/object/property/name", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityScore/shape/object/property/score", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityScore/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityScore/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityScore", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape/object/property/custom_model", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape/object/property/dataset", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape/object/property/target_feature", @@ -351,508 +762,97 @@ "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape/object/property/alternatives", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape/object/property/callback_url", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape/object/property/notify", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingCustomModel/shape/object/property/id", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingCustomModel/shape/object/property/version_id", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingCustomModel/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingCustomModel/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingCustomModel", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Transcription/shape/object/property/language", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Transcription/shape/object/property/identify_speakers", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Transcription/shape/object/property/confidence_threshold", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Transcription/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Transcription/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Transcription", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TranscriptionMetadata/shape/object/property/confidence", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TranscriptionMetadata/shape/object/property/detected_language", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TranscriptionMetadata/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TranscriptionMetadata/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TranscriptionMetadata", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Type/shape/enum/value/EMBEDDING_GENERATION", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Type/shape/enum/value/INFERENCE", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Type/shape/enum/value/TL_INFERENCE", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Type/shape/enum/value/TRAINING", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Type/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Type", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Unconfigurable/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Unconfigurable", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/EMBEDDING_GENERATION", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/INFERENCE", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/TL_INFERENCE", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/TRAINING", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobEmbeddingGeneration/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobEmbeddingGeneration/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobEmbeddingGeneration", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobInference/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobInference", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTlInference/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTlInference/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTlInference", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTraining/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTraining/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTraining", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionPredictResult/shape/undiscriminatedUnion/variant/0", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionPredictResult/shape/undiscriminatedUnion/variant/1", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionPredictResult/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionPredictResult", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ValidationArgs/shape/object/property/positive_label", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ValidationArgs/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ValidationArgs/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ValidationArgs", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:When/shape/enum/value/created_before", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:When/shape/enum/value/created_after", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:When/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:When", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Window/shape/object/property/length", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Window/shape/object/property/step", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Window/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Window/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Window", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbeddingItem/shape/object/property/name", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbeddingItem/shape/object/property/score", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbeddingItem/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbeddingItem/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbeddingItem", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbedding/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbedding", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeRange/shape/object/property/begin", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeRange/shape/object/property/end", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeRange/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeRange/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeRange", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextPosition/shape/object/property/begin", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextPosition/shape/object/property/end", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextPosition/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextPosition/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextPosition", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentItem/shape/object/property/name", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentItem/shape/object/property/score", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentItem/shape/object", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentItem/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentItem", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Sentiment/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Sentiment", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityItem/shape/object/property/name", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityItem/shape/object/property/score", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs/response", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job/request", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job/response", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/response", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-predictions/response", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-artifacts/response", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/response", - "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/message/server/subscribe/body", - "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/message/client/publish/body", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Alternative/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Classification/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Null/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Regression/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source/shape/discriminatedUnion/variant/url", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source/shape/discriminatedUnion/variant/file", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source/shape/discriminatedUnion/variant/text", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceFile/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceTextSource/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceUrl/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/QUEUED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/IN_PROGRESS", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/COMPLETED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape/discriminatedUnion/variant/FAILED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationFailed/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationInProgress/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationQueued/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape/discriminatedUnion/variant/QUEUED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape/discriminatedUnion/variant/IN_PROGRESS", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape/discriminatedUnion/variant/COMPLETED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape/discriminatedUnion/variant/FAILED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceCompletedInference/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceFailed/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceInProgress/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceQueued/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/QUEUED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/IN_PROGRESS", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/COMPLETED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape/discriminatedUnion/variant/FAILED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceCompletedTlInference/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceFailed/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceInProgress/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceQueued/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/QUEUED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/IN_PROGRESS", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/COMPLETED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape/discriminatedUnion/variant/FAILED", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingCompletedTraining/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingFailed/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingInProgress/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingQueued/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Task/shape/discriminatedUnion/variant/classification", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Task/shape/discriminatedUnion/variant/regression", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskClassification/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskRegression/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextSource/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Unconfigurable/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/EMBEDDING_GENERATION", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/INFERENCE", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/TL_INFERENCE", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape/discriminatedUnion/variant/TRAINING", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobEmbeddingGeneration/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobInference/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTlInference/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTraining/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbedding/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Sentiment/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Toxicity/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request/formdata/field/json", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request/formdata/field/file", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstJobDetails/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurstPredictionsItem/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurst/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFace/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemeshPredictionsItem/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemesh/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguage/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsodyPredictionsItem/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsody/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamErrorJobDetails/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetailsJobDetails/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsLanguage/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BurstPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedEmbeddingGeneration/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelRequest/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetId/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetVersionId/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DescriptionsScore/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmbeddingGenerationBaseRequest/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionScore/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Error/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EvaluationArgs/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacemeshPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacsScore/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:File/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsBurstPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacePrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsLanguagePrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsNerPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsProsodyPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InProgress/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferencePrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceResults/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceSourcePredictResult/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobId/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Ner/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PositionInterval/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacePrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Queued/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:RegistryFileDetail/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentScore/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Url/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferencePrediction/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceResults/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceSourcePredictResult/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Tag/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeInterval/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelId/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelVersionId/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityScore/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingCustomModel/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Transcription/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TranscriptionMetadata/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ValidationArgs/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Window/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbeddingItem/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeRange/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextPosition/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentItem/shape/object", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityItem/shape/object", - "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/message/server/subscribe", - "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream/message/client/publish", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:SubscribeEvent/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Alternative", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Classification", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Dataset/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Direction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Granularity/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Null", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Regression", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SortBy/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Status/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Target/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextSource", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModel/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Type/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Unconfigurable", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionPredictResult/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:When/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbedding", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Sentiment", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Toxicity", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs/example/0", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job/example/0", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/example/0", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details/example/1", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-predictions/example/0", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-artifacts/example/0", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/example/0", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceFile/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceTextSource/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceUrl/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationFailed/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationInProgress/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationQueued/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceCompletedInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceFailed/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceInProgress/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceQueued/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceCompletedTlInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceFailed/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceInProgress/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceQueued/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingCompletedTraining/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingFailed/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingInProgress/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingQueued/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskClassification/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskRegression/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobEmbeddingGeneration/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTlInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTraining/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request/formdata", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstJobDetails/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurstPredictionsItem/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurst/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFace/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemeshPredictionsItem/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemesh/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguage/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsodyPredictionsItem/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsody/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamErrorJobDetails/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetailsJobDetails/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:SubscribeEvent", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsLanguage/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Bcp47Tag", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BurstPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedEmbeddingGeneration/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelRequest/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Dataset", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetId/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetVersionId/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DescriptionsScore/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Direction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmbeddingGenerationBaseRequest/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionScore/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Error/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EvaluationArgs/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacemeshPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacsScore/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:File/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Granularity", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsBurstPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacePrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacemeshPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsLanguagePrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsNerPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsProsodyPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InProgress/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferencePrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceResults/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceSourcePredictResult/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobId/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Ner/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PositionInterval/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullBurstPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacePrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacemeshPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Queued/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:RegistryFileDetail/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentScore/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SortBy", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Url/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Status", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferencePrediction/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceResults/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceSourcePredictResult/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Tag/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Target", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Task/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeInterval/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModel", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelId/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelVersionId/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityScore/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingCustomModel/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Transcription/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TranscriptionMetadata/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Type", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionPredictResult", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ValidationArgs/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:When", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Window/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbeddingItem/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeRange/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextPosition/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentItem/shape", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityItem/shape", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceFile", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceTextSource", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SourceUrl", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationCompletedEmbeddingGeneration", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationFailed", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationInProgress", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGenerationQueued", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceCompletedInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceFailed", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceInProgress", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInferenceQueued", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceCompletedTlInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceFailed", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceInProgress", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInferenceQueued", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingCompletedTraining", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingFailed", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingInProgress", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTrainingQueued", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskClassification", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TaskRegression", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobEmbeddingGeneration", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTlInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJobJobTraining", - "e810f56e-df97-4af2-bdaa-659077e1948e/websocket/subpackage_stream.stream", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstJobDetails", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurstPredictionsItem", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstBurst", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacePredictionsItem", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFace", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemeshPredictionsItem", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstFacemesh", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguagePredictionsItem", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstLanguage", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsodyPredictionsItem", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurstProsody", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamBurst", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamErrorJobDetails", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamError", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetailsJobDetails", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamJobDetails", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsFace", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModelsLanguage", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamDataModels", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_stream:StreamData", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BoundingBox", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:BurstPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedEmbeddingGeneration", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTlInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CompletedTraining", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelRequest", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetId", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DatasetVersionId", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:DescriptionsScore", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmbeddingGenerationBaseRequest", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionScore", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Error", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EvaluationArgs", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Face", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacePrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacemeshPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:FacsScore", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Failed", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:File", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsBurstPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacePrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsFacemeshPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsLanguagePrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsNerPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:GroupedPredictionsProsodyPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InProgress", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceBaseRequest", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferencePrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceRequest", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceResults", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:InferenceSourcePredictResult", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobEmbeddingGeneration", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTlInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobTraining", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:JobId", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Language", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:LanguagePrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Models", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ModelsPredictions", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Ner", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:NerPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PositionInterval", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullBurstPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacePrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalNullFacemeshPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataLanguagePrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataNerPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:PredictionsOptionalTranscriptionMetadataProsodyPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Prosody", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ProsodyPrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Queued", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:RegistryFileDetail", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentScore", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Source", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Url", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateEmbeddingGeneration", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTlInference", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:StateTraining", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferencePrediction", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceResults", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceSourcePredictResult", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Tag", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Task", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeInterval", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TlInferenceBaseRequest", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelId", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:CustomModelVersionId", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityScore", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingBaseRequest", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TrainingCustomModel", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Transcription", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TranscriptionMetadata", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:UnionJob", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ValidationArgs", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Window", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:EmotionEmbeddingItem", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TimeRange", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:TextPosition", - "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:SentimentItem", "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:ToxicityItem", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.list-jobs", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-details", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-predictions", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.get-job-artifacts", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file/request", - "e810f56e-df97-4af2-bdaa-659077e1948e/endpoint/endpoint_batch.start-inference-job-from-local-file" + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Toxicity/shape", + "e810f56e-df97-4af2-bdaa-659077e1948e/type-definition/type_:Toxicity" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-270fcb14-fecb-45b5-8075-3e207a0d4b31.json b/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-270fcb14-fecb-45b5-8075-3e207a0d4b31.json index 205c4a19b6..37da1322a4 100644 --- a/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-270fcb14-fecb-45b5-8075-3e207a0d4b31.json +++ b/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-270fcb14-fecb-45b5-8075-3e207a0d4b31.json @@ -10,12 +10,18 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/query/get_preview_urls", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/query/asset_ids", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/query/owner", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request/object/property/asset_type", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request/object/property/data", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request/object/property/description", @@ -26,67 +32,121 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request/object/property/skip_validation", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request/object/property/transfer_api_type", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request/object/property/url", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/path/asset_id", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/path/asset_id", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/request/object/property/skip_validation", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/request/object/property/token", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/request/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/path/asset_owner_and_name_or_id", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/query/transfer_api_type", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/request/object/property/continue_on_rejection", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/request/object/property/description", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/request/object/property/details", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/request/object/property/name", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/request/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/path/tune_id", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/path/tune_id", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/path/tune_id", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/query/offset", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/query/limit", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/query/name", @@ -94,42 +154,83 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/query/base_checkpoint_id", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/query/trigger_words", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/query/engine", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request/object/property/image", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request/object/property/height", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request/object/property/width", @@ -143,12 +244,20 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request/object/property/enable_safety", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request/object/property/force_asset_download", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request/object/property/force_asset_gpu_copy", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/error/0/422", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request/object/property/frequency_penalty", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request/object/property/ignore_eos", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request/object/property/logit_bias", @@ -169,16 +278,28 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request/object/property/top_logprobs", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request/object/property/top_p", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request/object/property/user", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/response/stream/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/error/0/422", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/error/1/500/error/shape", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/error/1/500/example/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/error/1/500", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/1", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/2/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/2/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/2/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/2", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request/object/property/frequency_penalty", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request/object/property/ignore_eos", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request/object/property/logit_bias", @@ -199,16 +320,27 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request/object/property/top_logprobs", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request/object/property/top_p", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request/object/property/user", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/error/0/422", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/error/1/500/error/shape", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/error/1/500/example/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/error/1/500", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/1", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/2/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/2/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/2/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/2", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request/object/property/best_of", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request/object/property/echo", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request/object/property/frequency_penalty", @@ -229,16 +361,28 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request/object/property/temperature", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request/object/property/top_p", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request/object/property/user", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/response/stream/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/error/0/422", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/error/1/500/error/shape", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/error/1/500/example/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/error/1/500", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/1", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/2/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/2/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/2/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/2", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request/object/property/best_of", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request/object/property/echo", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request/object/property/frequency_penalty", @@ -259,16 +403,35 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request/object/property/temperature", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request/object/property/top_p", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request/object/property/user", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/response", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/error/0/422/error/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/error/0/422", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/error/1/500/error/shape", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/error/1/500/example/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/error/1/500", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/0/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/0/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/0/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/1/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/1/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/1/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/1", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/2/snippet/curl/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/2/snippet/python/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/2/snippet/typescript/0", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/2", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/checkpoint", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/file", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/latent", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/lora", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/textual_inversion", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/vae", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape/object/property/asset_type", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape/object/property/created_at", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape/object/property/data", @@ -284,12 +447,17 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape/object/property/status_info", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape/object/property/tenant_uuid", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape/object/property/url", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType/shape/enum/value/file", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType/shape/enum/value/checkpoint", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType/shape/enum/value/lora", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType/shape/enum/value/textual_inversion", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType/shape/enum/value/vae", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType/shape/enum/value/latent", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine/shape/enum/value/text/llama-2-7b", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine/shape/enum/value/text/llama-2-13b", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine/shape/enum/value/text/llama-2-70b", @@ -306,25 +474,51 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine/shape/enum/value/image/stable-diffusion-ssd", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine/shape/enum/value/audio/tortoise-tts", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine/shape/enum/value/audio/rvc", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngineType/shape/enum/value/text", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngineType/shape/enum/value/image", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngineType/shape/enum/value/audio", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngineType/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngineType", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CheckpointData/shape/object/property/data_type", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CheckpointData/shape/object/property/engine", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CheckpointData/shape/object/property/file_format", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CheckpointData/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CheckpointData/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CheckpointData", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CompleteAssetUploadResponse/shape/object/property/error", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CompleteAssetUploadResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CompleteAssetUploadResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CompleteAssetUploadResponse", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi/shape/discriminatedUnion/variant/none", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi/shape/discriminatedUnion/variant/presigned-url", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi/shape/discriminatedUnion/variant/sts", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponse/shape/object/property/asset", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponse/shape/object/property/token", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponse/shape/object/property/transfer_api", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DataType/shape/enum/value/fp16", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DataType/shape/enum/value/fp32", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DataType/shape/enum/value/int4", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DataType/shape/enum/value/int8", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DataType/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DataType", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DeleteAssetResponse/shape/object/property/deleted_at", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DeleteAssetResponse/shape/object/property/id", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DeleteAssetResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DeleteAssetResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DeleteAssetResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileData/shape/object/property/file_format", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileData/shape/object/property/preview_url", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileData/shape/object/property/version", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileData/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileData/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileData", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension/shape/enum/value/unknown", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension/shape/enum/value/png", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension/shape/enum/value/jpg", @@ -332,26 +526,58 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension/shape/enum/value/txt", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension/shape/enum/value/mp3", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension/shape/enum/value/wav", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileFormat/shape/enum/value/safetensors", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileFormat/shape/enum/value/pt", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileFormat/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileFormat", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileStructure/shape/enum/value/unknown", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileStructure/shape/enum/value/single_file", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileStructure/shape/enum/value/multiple_files", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileStructure/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileStructure", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:HTTPValidationError/shape/object/property/detail", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:HTTPValidationError/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:HTTPValidationError/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:HTTPValidationError", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LatentData/shape/object/property/engine", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LatentData/shape/object/property/file_format", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LatentData/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LatentData/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LatentData", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ListAssetsResponse/shape/object/property/data", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ListAssetsResponse/shape/object/property/has_more", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ListAssetsResponse/shape/object/property/total", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ListAssetsResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ListAssetsResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ListAssetsResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData/shape/object/property/checkpoint", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData/shape/object/property/data_type", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData/shape/object/property/engine", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData/shape/object/property/file_format", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData/shape/object/property/trigger_words", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:NoTransferApi/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:NoTransferApi/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:NoTransferApi", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:PresignedUrlTransferApi/shape/object/property/get_url", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:PresignedUrlTransferApi/shape/object/property/put_url", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:PresignedUrlTransferApi/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:PresignedUrlTransferApi/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:PresignedUrlTransferApi", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi/shape/discriminatedUnion/variant/none", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi/shape/discriminatedUnion/variant/presigned-url", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi/shape/discriminatedUnion/variant/sts", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponse/shape/object/property/asset", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponse/shape/object/property/transfer_api", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status/shape/enum/value/ready_to_upload", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status/shape/enum/value/uploaded", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status/shape/enum/value/ready", @@ -359,6 +585,8 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status/shape/enum/value/rejected", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status/shape/enum/value/error", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status/shape/enum/value/uploading", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape/object/property/aws_access_key_id", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape/object/property/aws_secret_access_key", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape/object/property/aws_session_token", @@ -366,20 +594,40 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape/object/property/s3_endpoint_url", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape/object/property/s3_key", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape/object/property/s3_url", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData/shape/object/property/data_type", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData/shape/object/property/engine", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData/shape/object/property/file_format", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData/shape/object/property/trigger_words", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TransferApiType/shape/enum/value/presigned-url", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TransferApiType/shape/enum/value/sts", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TransferApiType/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TransferApiType", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:VAEData/shape/object/property/data_type", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:VAEData/shape/object/property/engine", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:VAEData/shape/object/property/file_format", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:VAEData/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:VAEData/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:VAEData", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationErrorLocItem/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationErrorLocItem", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationError/shape/object/property/loc", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationError/shape/object/property/msg", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationError/shape/object/property/type", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationError/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationError/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationError", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Details/shape/discriminatedUnion/variant/lora_tune", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Details/shape/discriminatedUnion/variant/text_to_speech_latent_tune", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Details/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Details", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine/shape/enum/value/text/llama-2-7b", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine/shape/enum/value/text/llama-2-13b", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine/shape/enum/value/text/llama-2-70b", @@ -396,23 +644,47 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine/shape/enum/value/image/stable-diffusion-ssd", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine/shape/enum/value/audio/tortoise-tts", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine/shape/enum/value/audio/rvc", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:HTTPValidationError/shape/object/property/detail", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:HTTPValidationError/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:HTTPValidationError/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:HTTPValidationError", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ListTunesResponse/shape/object/property/data", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ListTunesResponse/shape/object/property/has_more", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ListTunesResponse/shape/object/property/total", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ListTunesResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ListTunesResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ListTunesResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape/object/property/base_checkpoint", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape/object/property/files", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape/object/property/resize_images", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape/object/property/seed", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape/object/property/steps", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape/object/property/trigger_words", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint/shape/object/property/checkpoint_id", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint/shape/object/property/checkpoint_id", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint/shape/object/property/engine", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint/shape/object/property/name", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneFile/shape/object/property/caption", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneFile/shape/object/property/file_id", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneFile/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneFile/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneFile", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TextToSpeechLatentTune/shape/object/property/asset_ids", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TextToSpeechLatentTune/shape/object/property/inline_assets", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TextToSpeechLatentTune/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TextToSpeechLatentTune/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TextToSpeechLatentTune", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneDetails/shape/discriminatedUnion/variant/lora_tune", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneDetails/shape/discriminatedUnion/variant/text_to_speech_latent_tune", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneDetails/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneDetails", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape/object/property/created_at", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape/object/property/deleted_at", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape/object/property/description", @@ -427,35 +699,62 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape/object/property/tenant_id", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape/object/property/tune_type", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape/object/property/updated_at", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult/shape/object/property/number_of_available_assets", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult/shape/object/property/output_assets", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult/shape/object/property/rejected_assets", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult/shape/object/property/unready_assets", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneStatus/shape/enum/value/pending", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneStatus/shape/enum/value/running", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneStatus/shape/enum/value/succeeded", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneStatus/shape/enum/value/cancelled", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneStatus/shape/enum/value/failed", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneStatus/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneStatus", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneType/shape/enum/value/lora_tune", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneType/shape/enum/value/text_to_speech_latent_tune", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneType/shape/enum/value/text_to_speech_rvc_tune", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneType/shape/enum/value/text_to_speech_tortoise_tune", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneType/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneType", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationErrorLocItem/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationErrorLocItem", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationError/shape/object/property/loc", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationError/shape/object/property/msg", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationError/shape/object/property/type", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationError/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationError/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationError", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationRequestSeed/shape/undiscriminatedUnion/variant/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationRequestSeed/shape/undiscriminatedUnion/variant/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationRequestSeed/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationRequestSeed", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:HTTPValidationError/shape/object/property/detail", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:HTTPValidationError/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:HTTPValidationError/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:HTTPValidationError", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageEncoding/shape/enum/value/jpeg", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageEncoding/shape/enum/value/png", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageEncoding/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageEncoding", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration/shape/object/property/image_b64", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration/shape/object/property/removed_for_safety", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration/shape/object/property/seed", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration/shape/object/property/safety_score", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequestSeed/shape/undiscriminatedUnion/variant/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequestSeed/shape/undiscriminatedUnion/variant/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequestSeed/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequestSeed", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape/object/property/prompt", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape/object/property/prompt_2", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape/object/property/negative_prompt", @@ -489,8 +788,14 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape/object/property/transfer_images", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape/object/property/force_asset_download", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape/object/property/force_asset_gpu_copy", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationResponse/shape/object/property/images", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationResponse/shape/object/property/prediction_time_ms", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles/shape/enum/value/base", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles/shape/enum/value/3d-model", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles/shape/enum/value/analog-film", @@ -569,6 +874,8 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles/shape/enum/value/Neon Noir", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles/shape/enum/value/Silhouette", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles/shape/enum/value/Tilt-Shift", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler/shape/enum/value/PNDM", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler/shape/enum/value/LMS", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler/shape/enum/value/KLMS", @@ -586,60 +893,107 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler/shape/enum/value/DPM_PLUS_PLUS_SDE_KARRAS", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler/shape/enum/value/UNI_PC", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler/shape/enum/value/LCM", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationErrorLocItem/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationErrorLocItem", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationError/shape/object/property/loc", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationError/shape/object/property/msg", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationError/shape/object/property/type", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationError/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationError/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationError", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration/shape/object/property/video", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration/shape/object/property/removed_for_safety", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration/shape/object/property/seed", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration/shape/object/property/safety_score", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationResponse/shape/object/property/videos", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationResponse/shape/object/property/prediction_time_ms", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Stop/shape/undiscriminatedUnion/variant/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Stop/shape/undiscriminatedUnion/variant/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Stop/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Stop", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Prompt/shape/undiscriminatedUnion/variant/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Prompt/shape/undiscriminatedUnion/variant/1", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Prompt/shape/undiscriminatedUnion/variant/2", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Prompt/shape/undiscriminatedUnion/variant/3", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Prompt/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Prompt", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice/shape/object/property/finish_reason", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice/shape/object/property/index", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice/shape/object/property/logprobs", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice/shape/object/property/message", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape/object/property/choices", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape/object/property/created", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape/object/property/id", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape/object/property/model", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape/object/property/object", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape/object/property/usage", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice/shape/object/property/delta", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice/shape/object/property/finish_reason", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice/shape/object/property/index", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice/shape/object/property/logprobs", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionDelta/shape/object/property/content", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionDelta/shape/object/property/role", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionDelta/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionDelta/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionDelta", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExt/shape/object/property/vllm", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExt/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExt/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExt", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape/object/property/best_of", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape/object/property/ignore_eos", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape/object/property/skip_special_tokens", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape/object/property/stop_token_ids", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape/object/property/top_k", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape/object/property/use_beam_search", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape/object/property/choices", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape/object/property/created", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape/object/property/id", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape/object/property/model", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape/object/property/object", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape/object/property/usage", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponseFormat/shape/object/property/schema", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponseFormat/shape/object/property/type", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponseFormat/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponseFormat/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponseFormat", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatMessage/shape/object/property/content", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatMessage/shape/object/property/role", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatMessage/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatMessage/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatMessage", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice/shape/object/property/finish_reason", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice/shape/object/property/index", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice/shape/object/property/logprobs", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice/shape/object/property/text", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape/object/property/choices", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape/object/property/created", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape/object/property/id", @@ -647,434 +1001,80 @@ "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape/object/property/object", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape/object/property/system_fingerprint", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape/object/property/usage", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponseValidationErrorsValue/shape/undiscriminatedUnion/variant/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponseValidationErrorsValue/shape/undiscriminatedUnion/variant/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponseValidationErrorsValue/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponseValidationErrorsValue", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape/object/property/code", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape/object/property/message", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape/object/property/object", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape/object/property/param", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape/object/property/type", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape/object/property/validation_errors", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason/shape/enum/value/stop", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason/shape/enum/value/length", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason/shape/enum/value/tool_calls", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason/shape/enum/value/content_filter", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason/shape/enum/value/function_call", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason/shape/enum/value/cancelled", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FunctionCall/shape/object/property/arguments", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FunctionCall/shape/object/property/name", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FunctionCall/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FunctionCall/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FunctionCall", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:HTTPValidationError/shape/object/property/detail", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:HTTPValidationError/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:HTTPValidationError/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:HTTPValidationError", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Logprobs/shape/object/property/content", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Logprobs/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Logprobs/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Logprobs", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent/shape/object/property/bytes", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent/shape/object/property/logprob", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent/shape/object/property/token", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent/shape/object/property/top_logprobs", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:StreamOptions/shape/object/property/include_usage", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:StreamOptions/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:StreamOptions/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:StreamOptions", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ToolCall/shape/object/property/function", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ToolCall/shape/object/property/id", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ToolCall/shape/object/property/type", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ToolCall/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ToolCall/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ToolCall", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:TopLogprobs/shape/object/property/bytes", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:TopLogprobs/shape/object/property/logprob", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:TopLogprobs/shape/object/property/token", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:TopLogprobs/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:TopLogprobs/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:TopLogprobs", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:UsageStats/shape/object/property/completion_tokens", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:UsageStats/shape/object/property/prompt_tokens", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:UsageStats/shape/object/property/total_tokens", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:UsageStats/shape/object", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:UsageStats/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:UsageStats", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/0", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/1", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationErrorLocItem/shape", + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationErrorLocItem", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationError/shape/object/property/loc", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationError/shape/object/property/msg", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationError/shape/object/property/type", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/response/stream/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/error/1/500/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/error/1/500/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/response/stream/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/error/1/500/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/error/0/422/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/error/1/500/error/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/checkpoint", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/file", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/latent", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/lora", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/textual_inversion", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape/discriminatedUnion/variant/vae", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi/shape/discriminatedUnion/variant/none", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi/shape/discriminatedUnion/variant/presigned-url", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi/shape/discriminatedUnion/variant/sts", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:NoTransferApi/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi/shape/discriminatedUnion/variant/none", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi/shape/discriminatedUnion/variant/presigned-url", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi/shape/discriminatedUnion/variant/sts", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Details/shape/discriminatedUnion/variant/lora_tune", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Details/shape/discriminatedUnion/variant/text_to_speech_latent_tune", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneDetails/shape/discriminatedUnion/variant/lora_tune", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneDetails/shape/discriminatedUnion/variant/text_to_speech_latent_tune", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/request/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/request/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CheckpointData/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CompleteAssetUploadResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DeleteAssetResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileData/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:HTTPValidationError/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LatentData/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ListAssetsResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:PresignedUrlTransferApi/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:VAEData/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationError/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:HTTPValidationError/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ListTunesResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneFile/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TextToSpeechLatentTune/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationError/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:HTTPValidationError/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationError/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionDelta/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExt/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponseFormat/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatMessage/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FunctionCall/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:HTTPValidationError/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Logprobs/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:StreamOptions/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ToolCall/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:TopLogprobs/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:UsageStats/shape/object", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationError/shape/object", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngineType/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DataType/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileFormat/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileStructure/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TransferApiType/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationErrorLocItem/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneStatus/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneType/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationErrorLocItem/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationRequestSeed/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageEncoding/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequestSeed/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationErrorLocItem/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Stop/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Prompt/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponseValidationErrorsValue/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationErrorLocItem/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/error/1/500", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/example/2", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/error/1/500", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/example/2", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/response", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/error/1/500", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/example/2", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/error/0/422", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/error/1/500", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/0", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/1", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/example/2", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:NoTransferApi/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion/request", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:AssetType", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngine", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:BaseEngineType", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CheckpointData/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CompleteAssetUploadResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DataType", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DeleteAssetResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileData/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileExtension", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileFormat", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileStructure", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:HTTPValidationError/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LatentData/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ListAssetsResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:PresignedUrlTransferApi/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Status", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TransferApiType", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:VAEData/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationErrorLocItem", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationError/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Details/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:BaseEngine", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:HTTPValidationError/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ListTunesResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneFile/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TextToSpeechLatentTune/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneDetails/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneStatus", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneType", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationErrorLocItem", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationError/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationRequestSeed", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:HTTPValidationError/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageEncoding", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequestSeed", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:SDXLStyles", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:Scheduler", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationErrorLocItem", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationError/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Stop", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Prompt", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionDelta/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExt/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponseFormat/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatMessage/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponseValidationErrorsValue", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FinishReason", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FunctionCall/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:HTTPValidationError/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Logprobs/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:StreamOptions/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ToolCall/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:TopLogprobs/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:UsageStats/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationErrorLocItem", "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationError/shape", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:NoTransferApi", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Data", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:Asset", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CheckpointData", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CompleteAssetUploadResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponseTransferApi", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:CreateAssetResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:DeleteAssetResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:FileData", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:HTTPValidationError", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LatentData", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ListAssetsResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:LoraData", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:PresignedUrlTransferApi", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponseTransferApi", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:RetrieveAssetResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:StsTransferApi", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:TextualInversionData", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:VAEData", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_asset-library:ValidationError", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Details", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:HTTPValidationError", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ListTunesResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTune", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneCheckpoint", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:LoraTuneFile", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TextToSpeechLatentTune", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneDetails", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:Tune", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:TuneResult", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_fine-tuning:ValidationError", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:HTTPValidationError", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGeneration", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationRequest", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ImageGenerationResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:ValidationError", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGeneration", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_image-gen:VideoGenerationResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChoice", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunk", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionChunkChoice", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionDelta", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExt", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionRequestExtVLLM", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatCompletionResponseFormat", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ChatMessage", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionChoice", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:CompletionResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ErrorResponse", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:FunctionCall", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:HTTPValidationError", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:Logprobs", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:LogprobsContent", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:StreamOptions", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ToolCall", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:TopLogprobs", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:UsageStats", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationError", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.list", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.create", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.delete", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.completeUpload", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_asset-library.get", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.create", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.get", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.delete", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.cancel", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_fine-tuning.list", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSsd", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSdxl", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateControlnetSd15", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSdxl", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSd", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_image-gen.generateSvd", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion_stream", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createChatCompletion", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion_stream", - "270fcb14-fecb-45b5-8075-3e207a0d4b31/endpoint/endpoint_text-gen.createCompletion" + "270fcb14-fecb-45b5-8075-3e207a0d4b31/type-definition/type_text-gen:ValidationError" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-2eeac53f-90cc-492b-9d29-e3ed711d7704.json b/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-2eeac53f-90cc-492b-9d29-e3ed711d7704.json index 7a5147aa7c..74da0856ba 100644 --- a/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-2eeac53f-90cc-492b-9d29-e3ed711d7704.json +++ b/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-2eeac53f-90cc-492b-9d29-e3ed711d7704.json @@ -7,8 +7,16 @@ "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/request/object/property/output_image_width", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/request/object/property/output_image_encoding", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/request/object/property/scale", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/request/object", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/request", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/response", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/error/0/422/error/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/error/0/422", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/example/0/snippet/curl/0", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/example/0", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/example/1/snippet/curl/0", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/example/1", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request/object/property/init_image", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request/object/property/init_image_url", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request/object/property/output_image_encoding", @@ -19,8 +27,16 @@ "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request/object/property/only_mask", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request/object/property/post_process_mask", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request/object/property/bgcolor", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request/object", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/response", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/error/0/422/error/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/error/0/422", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/example/0/snippet/curl/0", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/example/0", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/example/1/snippet/curl/0", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/example/1", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request/object/property/init_image", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request/object/property/init_image_url", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request/object/property/image_encoding", @@ -44,10 +60,20 @@ "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request/object/property/confidence", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request/object/property/detector", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request/object/property/union_masks", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request/object", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/response", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/error/0/422/error/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/error/0/422", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/example/0/snippet/curl/0", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/example/0", "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/example/1/snippet/curl/0", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/example/1", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerRequestSeed/shape/undiscriminatedUnion/variant/0", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerRequestSeed/shape/undiscriminatedUnion/variant/1", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerRequestSeed/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerRequestSeed", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector/shape/enum/value/face_yolov8n", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector/shape/enum/value/hand_yolov8n", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector/shape/enum/value/face_full_mediapipe", @@ -55,17 +81,32 @@ "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector/shape/enum/value/face_mesh_mediapipe", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector/shape/enum/value/eyes_mesh_mediapipe", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector/shape/enum/value/face_hair_mediapipe", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerInpaintingBaseModel/shape/enum/value/sdxl", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerInpaintingBaseModel/shape/enum/value/sd15", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerInpaintingBaseModel/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerInpaintingBaseModel", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse/shape/object/property/image_b64", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse/shape/object/property/num_objects_inpainted", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse/shape/object/property/num_objects_detected", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse/shape/object/property/num_removed_for_safety", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse/shape/object", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:HTTPValidationError/shape/object/property/detail", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:HTTPValidationError/shape/object", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:HTTPValidationError/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:HTTPValidationError", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageEncoding/shape/enum/value/jpeg", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageEncoding/shape/enum/value/png", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageEncoding/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageEncoding", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageResponse/shape/object/property/image_b64", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageResponse/shape/object/property/removed_for_safety", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageResponse/shape/object", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageResponse/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageResponse", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler/shape/enum/value/PNDM", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler/shape/enum/value/LMS", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler/shape/enum/value/KLMS", @@ -83,65 +124,24 @@ "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler/shape/enum/value/DPM_PLUS_PLUS_SDE_KARRAS", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler/shape/enum/value/UNI_PC", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler/shape/enum/value/LCM", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel/shape/enum/value/real-esrgan-x4-plus", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel/shape/enum/value/real-esrgan-x4-v3", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel/shape/enum/value/real-esrgan-x4-v3-wdn", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel/shape/enum/value/real-esrgan-animevideo-v3", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel/shape/enum/value/real-esrgan-x4-plus-anime", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel/shape/enum/value/real-esrgan-x2-plus", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/0", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationErrorLocItem/shape/undiscriminatedUnion/variant/1", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationErrorLocItem/shape", + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationErrorLocItem", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationError/shape/object/property/loc", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationError/shape/object/property/msg", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationError/shape/object/property/type", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/response", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/error/0/422/error/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/response", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/error/0/422/error/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/response", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/error/0/422/error/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/request/object", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request/object", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request/object", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse/shape/object", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:HTTPValidationError/shape/object", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageResponse/shape/object", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationError/shape/object", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerRequestSeed/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerInpaintingBaseModel/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageEncoding/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationErrorLocItem/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/error/0/422", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/example/0", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/example/1", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/error/0/422", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/example/0", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/example/1", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/error/0/422", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/example/0", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/example/1", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale/request", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background/request", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images/request", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerRequestSeed", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerDetector", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerInpaintingBaseModel", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:HTTPValidationError/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageEncoding", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageResponse/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:Scheduler", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:UpscalingModel", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationErrorLocItem", "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationError/shape", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ADetailerResponse", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:HTTPValidationError", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ImageResponse", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationError", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.upscale", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.remove_background", - "2eeac53f-90cc-492b-9d29-e3ed711d7704/endpoint/endpoint_.generate_images" + "2eeac53f-90cc-492b-9d29-e3ed711d7704/type-definition/type_:ValidationError" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-cb786748-d42f-427d-9c21-00e6c59bd56c.json b/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-cb786748-d42f-427d-9c21-00e6c59bd56c.json index e91e9f75f7..fa671d82b0 100644 --- a/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-cb786748-d42f-427d-9c21-00e6c59bd56c.json +++ b/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitionKeys-cb786748-d42f-427d-9c21-00e6c59bd56c.json @@ -1,67 +1,163 @@ [ + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.getAccount/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.getAccount/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.getAccount/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.getAccount", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/request/object/property/country", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/request/object/property/company", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/request/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/request", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.createEndpoint/request", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.createEndpoint/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.createEndpoint/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.createEndpoint/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.createEndpoint", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoint/path/endpoint_name", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoint/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoint/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoint/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoint", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.deleteEndpoint/path/endpoint_name", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.deleteEndpoint/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.deleteEndpoint/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.deleteEndpoint/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.deleteEndpoint", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint/path/endpoint_name", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint/request", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoints/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoints/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoints/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoints", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getContainerMetadata/path/endpoint_name", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getContainerMetadata/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getContainerMetadata/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getContainerMetadata/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getContainerMetadata", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpointVolumeToken/path/endpoint_name", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpointVolumeToken/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpointVolumeToken/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpointVolumeToken/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpointVolumeToken", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/path/endpoint_name", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/query/begin_time", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/query/end_time", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/query/max_lines", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/query/replica_id", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogsStream/path/endpoint_name", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogsStream/query/replica_id", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogsStream/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogsStream/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogsStream/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogsStream", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/path/endpoint_name", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/query/begin_time", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/query/end_time", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/query/max_lines", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/query/replica_id", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEventsStream/path/endpoint_name", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEventsStream/query/replica_id", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEventsStream/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEventsStream/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEventsStream/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEventsStream", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.createSecret/request", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.createSecret/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.createSecret/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.createSecret/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.createSecret", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecret/path/key", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecret/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecret/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecret/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecret", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/path/key", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/request/object/property/value", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/request/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/request", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.deleteSecret/path/key", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.deleteSecret/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.deleteSecret/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.deleteSecret/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.deleteSecret", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecrets/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecrets/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecrets/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecrets", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.createRegistryCredential/request", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.createRegistryCredential/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.createRegistryCredential/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.createRegistryCredential/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.createRegistryCredential", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredential/path/key", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredential/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredential/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredential/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredential", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/path/key", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/request/object/property/username", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/request/object/property/password", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/request/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/request", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.deleteRegistryCredential/path/key", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.deleteRegistryCredential/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.deleteRegistryCredential/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.deleteRegistryCredential/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.deleteRegistryCredential", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredentials/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredentials/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredentials/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredentials", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_publicEndpoint.getPublicEndpoints/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_publicEndpoint.getPublicEndpoints/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_publicEndpoint.getPublicEndpoints/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_publicEndpoint.getPublicEndpoints", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_instanceTypes.getInstanceTypes/response", "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_instanceTypes.getInstanceTypes/example/0/snippet/curl/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_instanceTypes.getInstanceTypes/example/0", + "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_instanceTypes.getInstanceTypes", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_endpoint:EndpointDeleteEndpointResponse/shape/object/property/message", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_endpoint:EndpointDeleteEndpointResponse/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_endpoint:EndpointDeleteEndpointResponse/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_endpoint:EndpointDeleteEndpointResponse", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_secret:SecretDeleteSecretResponse/shape/object/property/message", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_secret:SecretDeleteSecretResponse/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_secret:SecretDeleteSecretResponse/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_secret:SecretDeleteSecretResponse", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_registryCredential:RegistryCredentialDeleteRegistryCredentialResponse/shape/object/property/message", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_registryCredential:RegistryCredentialDeleteRegistryCredentialResponse/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_registryCredential:RegistryCredentialDeleteRegistryCredentialResponse/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_registryCredential:RegistryCredentialDeleteRegistryCredentialResponse", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AccountStatus/shape/enum/value/ready_trial", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AccountStatus/shape/enum/value/ready_billed", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AccountStatus/shape/enum/value/suspended_billing", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AccountStatus/shape/enum/value/suspended_tos", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AccountStatus/shape/enum/value/error", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AccountStatus/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AccountStatus", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape/object/property/name", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape/object/property/email", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape/object/property/provider", @@ -69,10 +165,17 @@ "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape/object/property/country", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape/object/property/company", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape/object/property/status", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateVisibility/shape/enum/value/private", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateVisibility/shape/enum/value/public", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateVisibility/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateVisibility", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateEndpointState/shape/enum/value/active", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateEndpointState/shape/enum/value/disabled", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateEndpointState/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateEndpointState", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape/object/property/min_replicas", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape/object/property/max_replicas", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape/object/property/scale_to_zero", @@ -87,6 +190,9 @@ "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape/object/property/instance_type", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape/object/property/container_secrets", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape/object/property/concurrency_per_replica", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape/object/property/name", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape/object/property/display_name", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape/object/property/description", @@ -105,27 +211,53 @@ "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape/object/property/instance_type", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape/object/property/container_secrets", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape/object/property/concurrency_per_replica", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeExperimental/shape/object/property/name", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeExperimental/shape/object/property/path", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeExperimental/shape/object/property/mount", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeExperimental/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeExperimental/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeExperimental", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerPort/shape/object/property/port_num", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerPort/shape/object/property/proto", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerPort/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerPort/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerPort", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse/shape/object/property/image_url", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse/shape/object/property/exposed_ports", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse/shape/object/property/labels", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse/shape/object/property/env", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeToken/shape/object/property/token", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeToken/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeToken/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeToken", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:SecretKeyValue/shape/object/property/key", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:SecretKeyValue/shape/object/property/value", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:SecretKeyValue/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:SecretKeyValue/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:SecretKeyValue", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredential/shape/object/property/key", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredential/shape/object/property/username", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredential/shape/object/property/password", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredential/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredential/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredential", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredentialSummary/shape/object/property/key", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredentialSummary/shape/object/property/username", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredentialSummary/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredentialSummary/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredentialSummary", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AggregationEnum/shape/enum/value/1m", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AggregationEnum/shape/enum/value/30m", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AggregationEnum/shape/enum/value/1h", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AggregationEnum/shape/enum/value/24h", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AggregationEnum/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AggregationEnum", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape/object/property/count_2xx", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape/object/property/count_3xx", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape/object/property/count_4xx", @@ -133,11 +265,19 @@ "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape/object/property/p99_millis", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape/object/property/p95_millis", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape/object/property/p50_millis", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventEntry/shape/object/property/timestamp", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventEntry/shape/object/property/replica_id", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventEntry/shape/object/property/event", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventEntry/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventEntry/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventEntry", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventLevel/shape/enum/value/normal", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventLevel/shape/enum/value/warning", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventLevel/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventLevel", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape/object/property/level", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape/object/property/type", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape/object/property/endpoint", @@ -145,26 +285,45 @@ "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape/object/property/account_key", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape/object/property/instance_type", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape/object/property/details", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:LogEntry/shape/object/property/timestamp", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:LogEntry/shape/object/property/replica_id", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:LogEntry/shape/object/property/data", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:LogEntry/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:LogEntry/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:LogEntry", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ReplicaStatus/shape/enum/value/pending", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ReplicaStatus/shape/enum/value/running", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ReplicaStatus/shape/enum/value/succeeded", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ReplicaStatus/shape/enum/value/failed", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ReplicaStatus/shape/enum/value/unknown", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ReplicaStatus/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ReplicaStatus", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape/object/property/account_key", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape/object/property/endpoint_name", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape/object/property/replica_id", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape/object/property/status", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape/object/property/restarts", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape/object/property/age", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointResponse/shape/object/property/endpoint", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointResponse/shape/object/property/replicas", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointResponse/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointResponse/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointResponse", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:HostedEndpoint/shape/object/property/endpoint", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:HostedEndpoint/shape/object/property/is_live", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:HostedEndpoint/shape/object", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:HostedEndpoint/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:HostedEndpoint", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfoAccelerator/shape/enum/value/none", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfoAccelerator/shape/enum/value/gpu", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfoAccelerator/shape", + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfoAccelerator", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo/shape/object/property/instance_name", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo/shape/object/property/display_name", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo/shape/object/property/vcpu", @@ -173,166 +332,7 @@ "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo/shape/object/property/accelerator", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo/shape/object/property/available", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo/shape/object/property/price", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.getAccount/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.createEndpoint/request", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.createEndpoint/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoint/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.deleteEndpoint/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint/request", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoints/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getContainerMetadata/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpointVolumeToken/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogsStream/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEventsStream/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.createSecret/request", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.createSecret/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecret/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.deleteSecret/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecrets/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.createRegistryCredential/request", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.createRegistryCredential/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredential/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.deleteRegistryCredential/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredentials/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_publicEndpoint.getPublicEndpoints/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_instanceTypes.getInstanceTypes/response", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/request/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/request/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/request/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_endpoint:EndpointDeleteEndpointResponse/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_secret:SecretDeleteSecretResponse/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_registryCredential:RegistryCredentialDeleteRegistryCredentialResponse/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeExperimental/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerPort/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeToken/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:SecretKeyValue/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredential/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredentialSummary/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventEntry/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:LogEntry/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointResponse/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:HostedEndpoint/shape/object", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo/shape/object", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AccountStatus/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateVisibility/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateEndpointState/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AggregationEnum/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventLevel/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ReplicaStatus/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfoAccelerator/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.getAccount/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.createEndpoint/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoint/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.deleteEndpoint/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoints/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getContainerMetadata/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpointVolumeToken/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogsStream/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEventsStream/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.createSecret/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecret/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.deleteSecret/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecrets/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.createRegistryCredential/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredential/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.deleteRegistryCredential/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredentials/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_publicEndpoint.getPublicEndpoints/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_instanceTypes.getInstanceTypes/example/0", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount/request", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret/request", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential/request", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_endpoint:EndpointDeleteEndpointResponse/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_secret:SecretDeleteSecretResponse/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_registryCredential:RegistryCredentialDeleteRegistryCredentialResponse/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AccountStatus", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateVisibility", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdateEndpointState", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeExperimental/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerPort/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeToken/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:SecretKeyValue/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredential/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredentialSummary/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:AggregationEnum", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventEntry/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventLevel", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:LogEntry/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ReplicaStatus", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointResponse/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:HostedEndpoint/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfoAccelerator", "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo/shape", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_endpoint:EndpointDeleteEndpointResponse", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_secret:SecretDeleteSecretResponse", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_registryCredential:RegistryCredentialDeleteRegistryCredentialResponse", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Account", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointUpdate", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointCreate", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeExperimental", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerPort", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:ContainerResponse", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:VolumeToken", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:SecretKeyValue", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredential", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:RegistryCredentialSummary", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:MetricEntry", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EventEntry", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Event", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:LogEntry", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:Replica", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:EndpointResponse", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:HostedEndpoint", - "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.getAccount", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_account.patchAccount", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.createEndpoint", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoint", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.deleteEndpoint", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.patchEndpoint", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpoints", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getContainerMetadata", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_endpoint.getEndpointVolumeToken", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogs", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointLogsStream", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEvents", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_telemetry.getEndpointEventsStream", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.createSecret", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecret", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.updateSecret", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.deleteSecret", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_secret.getSecrets", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.createRegistryCredential", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredential", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.updateRegistryCredential", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.deleteRegistryCredential", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_registryCredential.getRegistryCredentials", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_publicEndpoint.getPublicEndpoints", - "cb786748-d42f-427d-9c21-00e6c59bd56c/endpoint/endpoint_instanceTypes.getInstanceTypes" + "cb786748-d42f-427d-9c21-00e6c59bd56c/type-definition/type_:InstanceTypeInfo" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitions.json b/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitions.json index 664bbce1d7..b0d6543fae 100644 --- a/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitions.json +++ b/packages/fdr-sdk/src/__test__/output/octoai/apiDefinitions.json @@ -4628,6 +4628,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -4923,6 +4924,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -5500,6 +5502,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -6233,6 +6236,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -6985,6 +6989,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -8612,6 +8617,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -8891,6 +8897,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -9219,6 +9226,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -9573,6 +9581,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -10536,6 +10545,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -10823,6 +10833,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11057,6 +11068,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11444,6 +11456,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11862,6 +11875,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -13461,6 +13475,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -15060,6 +15075,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -16659,6 +16675,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -18258,6 +18275,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -20108,6 +20126,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -21083,6 +21102,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -21095,6 +21115,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -22950,6 +22971,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -22962,6 +22984,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -24769,6 +24792,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -24781,6 +24805,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -26087,6 +26112,7 @@ "errors": [ { "description": "Validation Error", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -26099,6 +26125,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", diff --git a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-4f9d4e39-a928-4c8a-b9d0-308434722f10.json b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-4f9d4e39-a928-4c8a-b9d0-308434722f10.json index 1ddc520cad..a682591d86 100644 --- a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-4f9d4e39-a928-4c8a-b9d0-308434722f10.json +++ b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-4f9d4e39-a928-4c8a-b9d0-308434722f10.json @@ -1,103 +1,172 @@ [ "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/path/connection_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/query/refresh_schemas", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/query/include_fields", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/path/connection_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/path/schema_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/path/connection_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/error/1/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/error/1/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request/object/property/active", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request/object/property/automatically_add_new_fields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request/object/property/automatically_add_new_objects", @@ -113,62 +182,102 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request/object/property/schemas", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request/object/property/source_configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request/object/property/source_connection_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/query/refresh_schemas", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/query/refresh_schemas", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/request/object/property/active", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/request/object/property/automatically_add_new_fields", @@ -185,200 +294,347 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/request/object/property/schemas", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/request/object/property/source_configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/request/object/property/source_connection_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/request/object/property/resync", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/request/object/property/schemas", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/request/object/property/test", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/error/1/401", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/path/exec_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/query/filters", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/request/object/property/schemas", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/path/schema_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/path/schema_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/request/object/property/enabled", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/request/object/property/fields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/request/object/property/partition_key", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/error/1/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/error/1/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/error/1/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/error/1/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request/object/property/organization_id", @@ -386,84 +642,150 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request/object/property/redirect_url", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request/object/property/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request/object/property/validate", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/3/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/3/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request/object/property/connection", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request/object/property/redirect_url", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request/object/property/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request/object/property/whitelist", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/2/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/2/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/0/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/1/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/2/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/3/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/4/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/query/force", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/3/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/3/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/request/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/request/object/property/name", @@ -472,264 +794,474 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/request/object/property/reconnect", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/request/object/property/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/request/object/property/validate", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/4/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/4/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/5/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/5/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/5", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/6/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/6/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/6/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/6/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/6", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/request/object/property/query", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/query/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/query/search", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/request/object/property/refresh", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/request/object/property/target", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/path/connection_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/path/schema_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/path/connection_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/request/object/property/configuration", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/0/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/1/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/2/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/3/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/4/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/query/async", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/0/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/1/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/2/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/3/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/4/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/query/async", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/query/async", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0/snippet/curl/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0/snippet/python/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0/snippet/typescript/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0/snippet/go/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/1/snippet/curl/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/1/snippet/python/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/2/500", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0/snippet/python/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0/snippet/typescript/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/1/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/query/async", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/query/async", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/request/object/property/additional_fields", @@ -744,154 +1276,271 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/request/object/property/policies", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/request/object/property/relations", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/request/object/property/tracking_columns", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/query/async", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/0/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/1/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/2/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/3/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/4/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/query/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/query/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/query/starting_after", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/query/ending_before", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/query/limit", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/1/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/1/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/error/0/401", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/1", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/path/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/error/1/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/error/1/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/error/1/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/error/1/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request/object/property/client_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request/object/property/client_secret", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request/object/property/issuer", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request/object/property/sso_domain", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request/object/property/sso_org_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/1/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/1/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/request/object/property/client_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/request/object/property/client_secret", @@ -899,349 +1548,595 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/request/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/request/object/property/sso_domain", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/request/object/property/sso_org_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/1/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/1/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/path/org_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/path/org_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/request/object/property/email", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/request/object/property/role", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/1/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/1/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/path/org_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/path/org_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/path/org_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/request/object/property/email", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/request/object/property/role", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/1/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/1/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/path/org_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/query/force", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/error/1/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/error/1/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/request/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/request/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/request/object/property/policy_actions", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0/snippet/curl/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0/snippet/python/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0/snippet/typescript/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0/snippet/go/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1/snippet/curl/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1/snippet/python/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1/snippet/typescript/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1/snippet/go/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/2/snippet/curl/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/2/snippet/python/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/2/snippet/typescript/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/4/500", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0/snippet/python/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0/snippet/typescript/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1/snippet/python/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1/snippet/typescript/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/2/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/2/snippet/python/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/request/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/request/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/request/object/property/policy_actions", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/error/1/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/error/1/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/request/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/request/object/property/organization_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/request/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/request/object/property/organization_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request/object/property/active", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request/object/property/enricher", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request/object/property/fields", @@ -1257,80 +2152,135 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request/object/property/schedule", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request/object/property/sync_all_records", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request/object/property/target", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/3/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/3/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/4/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/request/object/property/active", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/request/object/property/enricher", @@ -1347,245 +2297,428 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/request/object/property/schedule", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/request/object/property/sync_all_records", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/request/object/property/target", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/4/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/4/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/5/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/5/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/5", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/6/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/6/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/6/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/6/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/6", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/1/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/1/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/request/object/property/identities", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/request/object/property/resync", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/0/snippet/curl/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/2/403/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/2/403", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/3/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/3/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/4/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/4/500", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/4/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/4/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/4", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/5/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/5/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/5/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/5/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/5", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/path/sync_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/path/sync_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/path/sync_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/path/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/path/sync_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/path/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/path/filename", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/3", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/4/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/4/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/4", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/error/1/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/error/1/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/request/object/property/endpoint", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/request/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/request/object/property/secret", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/1/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/1/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/error/1/404", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/2", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/path/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/1/404/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/1/404", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/path/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/request/object/property/endpoint", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/request/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/request/object/property/secret", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/request/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/request", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/response", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/0/401/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/0/401", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/1/422/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/1/422", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/2/500/error/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/2/500", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/0/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/0/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/0/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/0/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/1/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/1/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/1/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/1/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/1", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/2/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/2/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/2/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/2/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/2", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/3/snippet/curl/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/3/snippet/python/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/3/snippet/typescript/0", "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/3/snippet/go/0", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/3", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ApiError/shape/object/property/message", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ApiError/shape/object/property/metadata", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ApiError/shape/object/property/status", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ApiError/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ApiError/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ApiError", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkDiscover/shape/enum/value/all", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkDiscover/shape/enum/value/onlyIncremental", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkDiscover/shape/enum/value/onlyNonIncremental", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkDiscover/shape/enum/value/none", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkDiscover/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkDiscover", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus/shape/enum/value/created", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus/shape/enum/value/scheduled", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus/shape/enum/value/running", @@ -1596,10 +2729,18 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus/shape/enum/value/failed", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus/shape/enum/value/processing", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus/shape/enum/value/errors", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkItemizedSchedule/shape/object/property/item", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkItemizedSchedule/shape/object/property/schedule", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkItemizedSchedule/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkItemizedSchedule/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkItemizedSchedule", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkMultiScheduleConfiguration/shape/object/property/schedules", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkMultiScheduleConfiguration/shape/object/property/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkMultiScheduleConfiguration/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkMultiScheduleConfiguration/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkMultiScheduleConfiguration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape/object/property/day_of_month", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape/object/property/day_of_week", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape/object/property/frequency", @@ -1607,6 +2748,9 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape/object/property/minute", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape/object/property/month", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape/object/property/multi", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/created", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/scheduled", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/running", @@ -1614,11 +2758,17 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/canceled", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/completed", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/failed", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSelectiveMode/shape/enum/value/none", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSelectiveMode/shape/enum/value/incrementalFields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSelectiveMode/shape/enum/value/nonincrementalFields", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSelectiveMode/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSelectiveMode", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFieldReferenceType/shape/enum/value/Model", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFieldReferenceType/shape/enum/value/Target", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFieldReferenceType/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFieldReferenceType", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction/shape/enum/value/Equality", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction/shape/enum/value/Inequality", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction/shape/enum/value/IsNull", @@ -1644,18 +2794,36 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction/shape/enum/value/StringLike", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction/shape/enum/value/StringNotLike", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction/shape/enum/value/StringMatchesTrimmed", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JsonschemaForm/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JsonschemaForm", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:LabelLabel/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:LabelLabel", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest/shape/object/property/example", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest/shape/object/property/label", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest/shape/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest/shape/object/property/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelation/shape/object/property/from", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelation/shape/object/property/to", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelation/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelation/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelation", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelationTo/shape/object/property/field", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelationTo/shape/object/property/model_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelationTo/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelationTo/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelationTo", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse/shape/object/property/code", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse/shape/object/property/context", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse/shape/object/property/error", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse/shape/object/property/status", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency/shape/enum/value/manual", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency/shape/enum/value/continuous", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency/shape/enum/value/hourly", @@ -1666,17 +2834,27 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency/shape/enum/value/runafter", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency/shape/enum/value/multi", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency/shape/enum/value/dbtcloud", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption/shape/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption/shape/object/property/description", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption/shape/object/property/frequency", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption/shape/object/property/label", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation/shape/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation/shape/object/property/reference_to", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation/shape/object/property/referenced_field", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaIdentityFunction/shape/enum/value/Equality", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaIdentityFunction/shape/enum/value/ISubstring", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaIdentityFunction/shape/enum/value/OneOf", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaIdentityFunction/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaIdentityFunction", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape/object/property/does_not_report_operation_counts", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape/object/property/new_target_label", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape/object/property/optional_target_mappings", @@ -1687,6 +2865,9 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape/object/property/supports_target_filters", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape/object/property/target_creator", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape/object/property/use_field_names_as_labels", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus/shape/enum/value/created", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus/shape/enum/value/scheduled", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus/shape/enum/value/queued", @@ -1698,16 +2879,42 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus/shape/enum/value/completed", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus/shape/enum/value/failed", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus/shape/enum/value/interrupted", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponse/shape/object/property/value", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncInput/shape/object/property/active", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncInput/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncInput/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncInput", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncOutput/shape/object/property/active", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncOutput/shape/object/property/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncOutput/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncOutput/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncOutput", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDest/shape/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDest/shape/object/property/modes", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDest/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDest/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDest", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDestEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDestEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDestEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDestEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncListEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncListEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncListEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncListEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape/object/property/active", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape/object/property/destination_configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape/object/property/destination_connection_id", @@ -1720,22 +2927,52 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape/object/property/schedule", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape/object/property/source_configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape/object/property/source_connection_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConfigurationValue/shape/object/property/items", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConfigurationValue/shape/object/property/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConfigurationValue/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConfigurationValue/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConfigurationValue", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionListResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionListResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionListResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionListResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMeta/shape/object/property/has_items", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMeta/shape/object/property/items", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMeta/shape/object/property/requires_one_of", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMeta/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMeta/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMeta", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMetaResponse/shape/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMetaResponse/shape/object/property/items", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMetaResponse/shape/object/property/requires_one_of", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMetaResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMetaResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMetaResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValue/shape/object/property/label", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValue/shape/object/property/value", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValue/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValue/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValue", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResp/shape/object/property/allows_creation", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResp/shape/object/property/values", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResp/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResp/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResp", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape/object/property/api_calls_last_24_hours", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape/object/property/id", @@ -1745,15 +2982,30 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape/object/property/status", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape/object/property/status_error", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape/object/property/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType/shape/object/property/envConfig", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType/shape/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType/shape/object/property/use_oauth", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeResponseEnvelope/shape/object/property/data", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema/shape/object/property/id", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema/shape/object/property/name", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeResponseEnvelope", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema/shape/object/property/id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema/shape/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema/shape/object/property/operations", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/auth_code", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/auth_url", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/configuration", @@ -1764,6 +3016,9 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/status", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/status_error", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape/object/property/additional_fields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape/object/property/connection_id", @@ -1776,34 +3031,74 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape/object/property/policies", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape/object/property/relations", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape/object/property/tracking_columns", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2EnricherConfiguration/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2EnricherConfiguration", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2EnricherMapping/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2EnricherMapping", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment/shape/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment/shape/object/property/connection_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment/shape/object/property/enricher_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment/shape/object/property/fields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment/shape/object/property/mappings", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event/shape/object/property/created_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event/shape/object/property/event", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event/shape/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event/shape/object/property/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventTypesEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventTypesEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventTypesEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventTypesEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventsEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventsEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventsEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventsEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts/shape/object/property/error", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts/shape/object/property/insert", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts/shape/object/property/total", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts/shape/object/property/update", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogResponse/shape/object/property/expires", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogResponse/shape/object/property/urls", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogsResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogsResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogsResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogsResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape/object/property/field", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape/object/property/field_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape/object/property/field_type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape/object/property/function", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape/object/property/label", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape/object/property/value", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetConnectionMetaEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetConnectionMetaEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetConnectionMetaEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetConnectionMetaEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape/object/property/completed_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape/object/property/counts", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape/object/property/created_at", @@ -1812,7 +3107,13 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape/object/property/started_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape/object/property/status", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape/object/property/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape/object/property/email", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape/object/property/is_organization", @@ -1822,29 +3123,59 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape/object/property/organization_name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape/object/property/role", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity/shape/object/property/function", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity/shape/object/property/new_field", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity/shape/object/property/remote_field_type_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity/shape/object/property/source", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity/shape/object/property/target", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:IdentityFunction/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:IdentityFunction/shape/object/property/label", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:IdentityFunction/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:IdentityFunction/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:IdentityFunction", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse/shape/object/property/error", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse/shape/object/property/job_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse/shape/object/property/result", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse/shape/object/property/status", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse/shape/object/property/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListExecutionResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListExecutionResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListExecutionResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListExecutionResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListPoliciesResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListPoliciesResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListPoliciesResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListPoliciesResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListModelSyncResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListModelSyncResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListModelSyncResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListModelSyncResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListUsersEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListUsersEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListUsersEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListUsersEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape/object/property/description", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape/object/property/label", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape/object/property/mode", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape/object/property/requires_identity", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape/object/property/supports_field_sync_mode", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape/object/property/supports_target_filters", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape/object/property/description", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape/object/property/example", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape/object/property/id", @@ -1854,8 +3185,17 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape/object/property/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape/object/property/unique", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape/object/property/user_added", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelFieldResponse/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelFieldResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelFieldResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelFieldResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelListResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelListResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelListResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelListResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape/object/property/connection_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape/object/property/enricher", @@ -1870,44 +3210,97 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape/object/property/tracking_columns", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape/object/property/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape/object/property/version", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponseEnvelope/shape/object/property/data", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponseEnvelope/shape/object/property/job", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSample/shape/object/property/records", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSample/shape/object/property/warnings", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSample/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSample/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSample", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSampleResponseEnvelope/shape/object/property/data", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSampleResponseEnvelope/shape/object/property/job", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSampleResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSampleResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSampleResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization/shape/object/property/issuer", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization/shape/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization/shape/object/property/sso_domain", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization/shape/object/property/sso_org_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationsEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationsEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationsEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationsEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override/shape/object/property/field", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override/shape/object/property/field_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override/shape/object/property/function", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override/shape/object/property/override", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override/shape/object/property/value", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyAction/shape/object/property/action", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyAction/shape/object/property/role_ids", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyAction/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyAction/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyAction", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse/shape/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse/shape/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse/shape/object/property/policy_actions", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse/shape/object/property/system", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Relation/shape/object/property/from", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Relation/shape/object/property/to", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Relation/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Relation/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Relation", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RelationTo/shape/object/property/field", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RelationTo/shape/object/property/model_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RelationTo/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RelationTo/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RelationTo", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleListResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleListResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleListResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleListResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse/shape/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse/shape/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse/shape/object/property/system", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RunAfter/shape/object/property/bulk_sync_ids", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RunAfter/shape/object/property/sync_ids", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RunAfter/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RunAfter/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RunAfter", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2SampleRecord/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2SampleRecord", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape/object/property/connection_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape/object/property/day_of_month", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape/object/property/day_of_week", @@ -1917,25 +3310,49 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape/object/property/minute", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape/object/property/month", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape/object/property/run_after", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponse/shape/object/property/schedule_options", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Source/shape/object/property/field", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Source/shape/object/property/model_id", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Source/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Source/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Source", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseSchema/shape/object/property/created_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseSchema/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseSchema/shape/object/property/status", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseSchema/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseSchema/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseSchema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape/object/property/description", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape/object/property/label", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape/object/property/requires_identity", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape/object/property/supports_field_sync_mode", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape/object/property/supports_target_filters", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField/shape/object/property/new", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField/shape/object/property/override_value", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField/shape/object/property/source", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField/shape/object/property/sync_mode", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField/shape/object/property/target", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape/object/property/active", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape/object/property/fields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape/object/property/filter_logic", @@ -1951,17 +3368,32 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape/object/property/schedule", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape/object/property/sync_all_records", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape/object/property/target", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusResponse/shape/object/property/current_execution", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusResponse/shape/object/property/last_execution", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusResponse/shape/object/property/next_execution_time", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape/object/property/connection_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape/object/property/filter_logic", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape/object/property/new_name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape/object/property/object", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape/object/property/search_values", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape/object/property/association", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape/object/property/createable", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape/object/property/description", @@ -1974,34 +3406,67 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape/object/property/supports_identity", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape/object/property/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape/object/property/updateable", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape/object/property/fields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape/object/property/modes", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape/object/property/properties", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape/object/property/refreshed_at", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User/shape/object/property/email", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User/shape/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User/shape/object/property/role", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:UserEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:UserEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:UserEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:UserEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook/shape/object/property/created_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook/shape/object/property/endpoint", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook/shape/object/property/organization_id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook/shape/object/property/secret", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookListEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookListEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookListEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookListEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkField/shape/object/property/enabled", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkField/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkField/shape/object/property/obfuscated", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkField/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkField/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkField", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema/shape/object/property/enabled", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema/shape/object/property/fields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema/shape/object/property/output_name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema/shape/object/property/partition_key", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape/object/property/completed_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape/object/property/created_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape/object/property/id", @@ -2011,7 +3476,13 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape/object/property/started_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape/object/property/status", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape/object/property/type", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecutionEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecutionEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecutionEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecutionEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/completed_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/error_count", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/record_count", @@ -2019,1558 +3490,87 @@ "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/started_at", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/status", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/status_message", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSource/shape/object/property/configuration", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSource/shape/object/property/schemas", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSource/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSource/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSource", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceSchemaEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatus/shape/object/property/cache_status", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatus/shape/object/property/last_refresh_finished", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatus/shape/object/property/last_refresh_started", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatus/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatus/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatus", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatusEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatusEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatusEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatusEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusResponse/shape/object/property/current_execution", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusResponse/shape/object/property/last_execution", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusResponse/shape/object/property/next_execution_time", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusResponse", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponse/shape/object/property/redirect_url", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponse/shape/object/property/token", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponseEnvelope/shape/object/property/data", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSchema/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponse/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponse/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponse", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponseEnvelope", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSchema/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSchema/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSchema/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSchema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSyncExecutionsEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PickValue/shape/object/property/label", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PickValue/shape/object/property/value", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PickValue/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PickValue/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PickValue", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schema/shape/object/property/fields", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schema/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schema/shape/object/property/name", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schema/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schema/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schema", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape/object/property/association", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape/object/property/id", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape/object/property/name", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape/object/property/remote_type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape/object/property/type", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape/object/property/values", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaRecordsResponseEnvelope/shape/object/property/data", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaRecordsResponseEnvelope/shape/object", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaRecordsResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaRecordsResponseEnvelope", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WorkTaskStatus/shape/enum/value/running", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WorkTaskStatus/shape/enum/value/done", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WorkTaskStatus/shape/enum/value/failed", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/global-headers/X-Polytomic-Version", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/error/1/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/error/1/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/error/1/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/3/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/2/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/3/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/4/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/5/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/1/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/error/1/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/error/1/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/1/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/1/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/1/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/1/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/error/1/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/error/1/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/3/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/4/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/5/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/1/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/2/403/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/3/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/4/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/error/1/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/1/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/1/404/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/response", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/0/401/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/1/422/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/2/500/error/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JsonschemaForm/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:LabelLabel/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2EnricherConfiguration/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2EnricherMapping/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2SampleRecord/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/request/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ApiError/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkItemizedSchedule/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkMultiScheduleConfiguration/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelation/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelationTo/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncInput/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncOutput/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDest/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDestEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncListEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConfigurationValue/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionListResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMeta/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMetaResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValue/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResp/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventTypesEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventsEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogsResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetConnectionMetaEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:IdentityFunction/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListExecutionResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListPoliciesResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListModelSyncResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListUsersEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelFieldResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelListResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSample/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSampleResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationsEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyAction/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Relation/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RelationTo/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleListResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RunAfter/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Source/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseSchema/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:UserEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookListEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkField/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecutionEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSource/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatus/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatusEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponse/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSchema/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PickValue/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schema/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaRecordsResponseEnvelope/shape/object", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkDiscover/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSelectiveMode/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFieldReferenceType/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JsonschemaForm", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:LabelLabel", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaIdentityFunction/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2EnricherConfiguration", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2EnricherMapping", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2SampleRecord", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WorkTaskStatus/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/error/1/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/error/1/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/error/1/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/3/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/2/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/3/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/4/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/error/5/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/example/6", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/1/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/error/1/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/error/1/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/1/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/1/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/1/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/1/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/error/1/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/error/1/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/3/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/4/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/error/5/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/example/6", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/1/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/2/403", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/3/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/error/4/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/example/5", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs/example/4", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/error/1/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/1/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/1/404", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/0/401", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/1/422", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/error/2/500", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/0", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/1", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/2", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/example/3", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update/request", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ApiError/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkDiscover", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkExecutionStatus", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkItemizedSchedule/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkMultiScheduleConfiguration/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaExecutionStatus", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSelectiveMode", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFieldReferenceType", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:FilterFunction", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelation/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelationTo/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleFrequency", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaIdentityFunction", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionStatus", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncInput/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncOutput/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDest/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDestEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncListEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConfigurationValue/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionListResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMeta/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMetaResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValue/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResp/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventTypesEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventsEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogsResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetConnectionMetaEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:IdentityFunction/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListExecutionResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListPoliciesResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListModelSyncResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListUsersEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelFieldResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelListResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSample/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSampleResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationsEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyAction/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Relation/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RelationTo/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleListResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RunAfter/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Source/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseSchema/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:UserEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookListEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkField/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecutionEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSource/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatus/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatusEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponse/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponseEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSchema/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PickValue/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schema/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField/shape", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaRecordsResponseEnvelope/shape", + "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WorkTaskStatus/shape", "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WorkTaskStatus", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ApiError", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkItemizedSchedule", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkMultiScheduleConfiguration", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchedule", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelModelFieldRequest", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelation", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelRelationTo", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RestErrResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleScheduleOption", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaAssociation", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncDestinationProperties", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:APIKeyResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncInput", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ActivateSyncOutput", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDest", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncDestEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncListEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConfigurationValue", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionListResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMeta", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionMetaResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValue", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResp", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionParameterValuesResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionResponseSchema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionType", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectionTypeSchema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateConnectionResponseSchema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:CreateModelRequest", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Enrichment", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Event", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventTypesEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:EventsEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionCounts", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ExecutionLogsResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Filter", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetConnectionMetaEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetExecutionResponseSchema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:GetIdentityResponseSchema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Identity", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:IdentityFunction", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:JobResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListExecutionResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListPoliciesResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListModelSyncResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListUsersEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Mode", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelField", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelFieldResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelListResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSample", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSampleResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Organization", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:OrganizationsEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Override", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyAction", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PolicyResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Relation", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RelationTo", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleListResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RoleResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:RunAfter", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schedule", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ScheduleOptionResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Source", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:StartModelSyncResponseSchema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SupportedMode", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncField", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ModelSyncResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SyncStatusResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Target", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetField", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:TargetResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:User", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:UserEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Webhook", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:WebhookListEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkField", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSchemaEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecution", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncExecutionEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSchemaExecution", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSource", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceSchemaEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatus", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncSourceStatusEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:BulkSyncStatusResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponse", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ConnectCardResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSchema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:ListBulkSyncExecutionsEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:PickValue", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:Schema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaField", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/type-definition/type_:SchemaRecordsResponseEnvelope", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetDestination", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSource", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceSchema", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetSourceStatus", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Create", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Remove", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Update", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Activate", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.Start", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync.GetStatus", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/executions.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Patch", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_bulkSync/schemas.Update", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTypes", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Create", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Connect", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Remove", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.Update", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetParameterValues", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSource", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetSourceFields", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTarget", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_connections.GetTargetFields", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_schemas.GetRecords", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Post", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Preview", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Create", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Remove", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Update", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_models.Sample", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_events.GetTypes", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_jobs.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_identity.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Create", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Remove", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_organization.Update", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Create", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Remove", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.Update", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_users.CreateApiKey", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Create", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Remove", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/policies.Update", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Create", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Remove", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_permissions/roles.Update", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Create", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetScheduleOptions", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Remove", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Update", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Activate", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.Start", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync.GetStatus", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogUrls", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_modelSync/executions.GetLogs", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.List", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Create", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Get", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Remove", - "4f9d4e39-a928-4c8a-b9d0-308434722f10/endpoint/endpoint_webhooks.Update" + "4f9d4e39-a928-4c8a-b9d0-308434722f10/global-headers/X-Polytomic-Version" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-9212af81-e9e3-43ce-bb7e-997fe422dfe3.json b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-9212af81-e9e3-43ce-bb7e-997fe422dfe3.json index ea46368318..28cb52c5e7 100644 --- a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-9212af81-e9e3-43ce-bb7e-997fe422dfe3.json +++ b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-9212af81-e9e3-43ce-bb7e-997fe422dfe3.json @@ -1,352 +1,352 @@ [ + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/error/0/401/error/shape", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/error/0/401", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/example/0/snippet/curl/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/example/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/example/1/snippet/curl/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/error/0/401/error/shape", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/error/1/500/error/shape", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/error/1/500", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/example/0/snippet/curl/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/example/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/example/1/snippet/curl/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/example/1", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/example/2/snippet/curl/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/request/object/property/configuration", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/request/object/property/name", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/request/object/property/organization_id", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/request/object/property/type", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/3/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/4/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/3/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/4/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/3/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/4/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/5/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/configuration", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/name", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/organization_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/type", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/3/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/4/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/5/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request/object/property/name", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request/object/property/sso_domain", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request/object/property/sso_org_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/3/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object/property/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object/property/name", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object/property/sso_domain", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object/property/sso_org_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/3/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/path/org_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request/object/property/email", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request/object/property/organization_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request/object/property/role", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/path/org_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/path/org_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/path/org_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object/property/email", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object/property/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object/property/organization_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object/property/role", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/3/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/3/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/request/object/property/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/request/object/property/identities", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/3/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/4/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/5/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/path/sync_id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/path/id", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/curl/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError/shape/object/property/message", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError/shape/object/property/metadata", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError/shape/object/property/status", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object/property/code", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object/property/context", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object/property/error", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object/property/status", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:V1TopLevelResponse/shape/object/property/error", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:V1TopLevelResponse/shape/object/property/result", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/global-headers/X-Polytomic-Version", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/error/1/500/error/shape", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/request/object", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/request", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/response", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/1/403/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/2/422/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/3/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/0/400/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/1/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/2/404/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/3/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/1/403/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/2/404/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/3/422/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/4/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/0/400/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/1/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/2/403/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/3/422/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/4/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/error/1/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/error/1/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/error/1/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/error/1/422/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/error/2/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/error/1/422/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/error/2/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/error/1/404/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/error/2/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/error/1/404/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/error/2/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/0/400/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/1/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/2/403/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/3/404/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/4/500/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/response", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/error/0/401/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/error/1/404/error/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/request/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/request/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError/shape/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:V1TopLevelResponse/shape/object", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/error/0/401", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/example/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes/example/1", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/error/0/401", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/error/1/500", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/example/0", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/example/1", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List/example/2", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/1/403/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/1/403", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/2/422/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/2/422", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/3/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/error/3/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/3/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/3", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/4/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/example/4", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/0/400/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/0/400", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/1/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/1/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/2/404/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/2/404", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/3/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/error/3/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/3/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/3", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/4/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get/example/4", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/1/403/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/1/403", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/2/404/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/2/404", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/3/422/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/3/422", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/4/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/error/4/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/3/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/3", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/4/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/4", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/5/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove/example/5", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/configuration", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/name", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/organization_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object/property/type", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request/object", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/0/400/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/0/400", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/1/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/1/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/2/403/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/2/403", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/3/422/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/3/422", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/4/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/error/4/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/3/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/3", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/4/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/4", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/5/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/example/5", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/error/1/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/error/1/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/error/1/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/error/1/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request/object/property/name", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request/object/property/sso_domain", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request/object/property/sso_org_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request/object", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/error/1/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/error/1/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/error/1/422/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/error/1/422", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/error/2/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/error/2/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/3/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get/example/3", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object/property/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object/property/name", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object/property/sso_domain", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object/property/sso_org_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request/object", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/error/1/422/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/error/1/422", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/error/2/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/error/2/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/3/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/example/3", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/path/org_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request/object/property/email", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request/object/property/organization_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request/object/property/role", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request/object", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/path/org_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/path/org_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/path/org_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object/property/email", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object/property/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object/property/organization_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object/property/role", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request/object", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/error/1/404/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/error/1/404", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/error/2/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/error/2/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/3/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List/example/3", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/error/1/404/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/error/1/404", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/error/2/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/error/2/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/3/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get/example/3", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/request/object/property/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/request/object/property/identities", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/request/object", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/request", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/0/400/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/0/400", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/1/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/1/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/2/403/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/2/403", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/3/404/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/3/404", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/4/500/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/error/4/500", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/2", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/3/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/3", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/4/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/4", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/5/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/example/5", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/path/sync_id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/path/id", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/response", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/error/0/401/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/error/0/401", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/error/1/404/error/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/error/1/404", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/example/0", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/example/1", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/curl/0", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get/example/2", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create/request", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update/request", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create/request", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update/request", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create/request", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update/request", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start/request", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError/shape/object/property/message", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError/shape/object/property/metadata", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError/shape/object/property/status", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError/shape/object", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:V1TopLevelResponse/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:ApiError", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object/property/code", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object/property/context", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object/property/error", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object/property/status", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape/object", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:RestErrResponse", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:V1TopLevelResponse/shape/object/property/error", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:V1TopLevelResponse/shape/object/property/result", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:V1TopLevelResponse/shape/object", + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:V1TopLevelResponse/shape", "9212af81-e9e3-43ce-bb7e-997fe422dfe3/type-definition/type_:V1TopLevelResponse", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.GetTypes", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.List", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Create", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Get", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Remove", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_connections.Update", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_identity.api/v1.GetIdentity", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.List", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Create", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Get", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_organization.Update", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Create", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Get", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Remove", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_users.Update", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.List", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Get", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync.Start", - "9212af81-e9e3-43ce-bb7e-997fe422dfe3/endpoint/endpoint_modelSync/executions.Get" + "9212af81-e9e3-43ce-bb7e-997fe422dfe3/global-headers/X-Polytomic-Version" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-9b972bf3-4f92-48dd-8a15-386f34ae82e1.json b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-9b972bf3-4f92-48dd-8a15-386f34ae82e1.json index 4b4842e924..e21870c2e5 100644 --- a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-9b972bf3-4f92-48dd-8a15-386f34ae82e1.json +++ b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-9b972bf3-4f92-48dd-8a15-386f34ae82e1.json @@ -1,20 +1,59 @@ [ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/query/refresh_schemas", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/error/1/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/error/1/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request/object/property/active", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request/object/property/automatically_add_new_fields", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request/object/property/automatically_add_new_objects", @@ -30,23 +69,63 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request/object/property/schemas", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request/object/property/source_configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request/object/property/source_connection_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/query/refresh_schemas", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/error/1/404", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/query/refresh_schemas", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/request/object/property/active", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/request/object/property/automatically_add_new_fields", @@ -63,51 +142,160 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/request/object/property/schemas", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/request/object/property/source_configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/request/object/property/source_connection_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/query/filters", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/error/1/404", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/request/object/property/schemas", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/path/schema_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/error/1/404", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/path/schema_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/request/object/property/enabled", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/request/object/property/partition_key", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/error/1/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/error/1/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/error/1/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/error/1/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request/object/property/organization_id", @@ -115,25 +303,74 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request/object/property/redirect_url", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request/object/property/type", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request/object/property/validate", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/3/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/3/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/query/force", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/3/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/3/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/request/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/request/object/property/name", @@ -142,85 +379,277 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/request/object/property/reconnect", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/request/object/property/type", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/request/object/property/validate", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/4/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/4/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/5/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/5/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/5", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/6/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/6", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/request/object/property/query", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/query/type", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/query/search", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/request/object/property/refresh", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/request/object/property/target", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/path/connection_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/request/object/property/configuration", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/query/async", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/error/1/404", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/query/async", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/query/async", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/query/async", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/query/async", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/request/object/property/additional_fields", @@ -235,61 +664,178 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/request/object/property/policies", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/request/object/property/relations", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/request/object/property/tracking_columns", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/query/async", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/query/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/query/type", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/query/starting_after", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/query/ending_before", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/query/limit", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/1/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/1/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/error/0/401", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/example/1", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/path/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/error/1/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/error/1/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/error/1/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/error/1/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request/object/property/client_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request/object/property/client_secret", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request/object/property/issuer", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request/object/property/sso_domain", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request/object/property/sso_org_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/1/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/1/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/error/1/404", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/request/object/property/client_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/request/object/property/client_secret", @@ -297,115 +843,361 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/request/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/request/object/property/sso_domain", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/request/object/property/sso_org_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/1/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/1/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/path/org_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/error/1/404", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/path/org_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/request/object/property/email", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/request/object/property/role", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/1/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/1/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/path/org_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/path/org_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/path/org_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/request/object/property/email", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/request/object/property/role", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/1/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/1/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/path/org_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/query/force", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/error/1/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/error/1/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/request/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/request/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/request/object/property/policy_actions", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/request/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/request/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/request/object/property/policy_actions", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/error/1/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/error/1/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/request/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/request/object/property/organization_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/error/1/404", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/request/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/request/object/property/organization_id", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/0/snippet/curl/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/1/snippet/curl/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/2/snippet/curl/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/3/snippet/curl/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/4/snippet/curl/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/5/snippet/curl/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/0/snippet/curl/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/4/500", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/1", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/2/500", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request/object/property/active", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request/object/property/enricher", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request/object/property/fields", @@ -421,26 +1213,81 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request/object/property/schedule", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request/object/property/sync_all_records", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request/object/property/target", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/3/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/3/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/request/object/property/active", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/request/object/property/enricher", @@ -457,98 +1304,287 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/request/object/property/schedule", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/request/object/property/sync_all_records", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/request/object/property/target", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/4/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/4/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/5/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/5/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/5", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/6/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/6", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/1/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/1/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/request/object/property/identities", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/request/object/property/resync", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/2/403/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/2/403", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/3/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/3/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/4/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/4/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/4", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/5/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/5", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/path/sync_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/error/1/404", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/path/sync_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/path/sync_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/path/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/path/sync_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/path/type", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/path/filename", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/3", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/4/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/4", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/error/1/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/error/1/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/request/object/property/endpoint", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/request/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/request/object/property/secret", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/1/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/1/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/error/1/404", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/example/2", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/path/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/1/404/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/1/404", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/path/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/request/object/property/endpoint", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/request/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/request/object/property/secret", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/request/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/request", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/response", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/0/401/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/0/401", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/1/422/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/1/422", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/2/500/error/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/2/500", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/0/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/0", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/1/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/1", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/2/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/2", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/3/snippet/curl/0", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/3", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ApiError/shape/object/property/message", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ApiError/shape/object/property/metadata", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ApiError/shape/object/property/status", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ApiError/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ApiError/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ApiError", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkDiscover/shape/enum/value/all", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkDiscover/shape/enum/value/onlyIncremental", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkDiscover/shape/enum/value/onlyNonIncremental", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkDiscover/shape/enum/value/none", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkDiscover/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkDiscover", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkItemizedSchedule/shape/object/property/item", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkItemizedSchedule/shape/object/property/schedule", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkItemizedSchedule/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkItemizedSchedule/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkItemizedSchedule", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkMultiScheduleConfiguration/shape/object/property/schedules", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkMultiScheduleConfiguration/shape/object/property/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkMultiScheduleConfiguration/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkMultiScheduleConfiguration/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkMultiScheduleConfiguration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape/object/property/day_of_month", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape/object/property/day_of_week", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape/object/property/frequency", @@ -556,11 +1592,18 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape/object/property/minute", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape/object/property/month", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape/object/property/multi", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSelectiveMode/shape/enum/value/none", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSelectiveMode/shape/enum/value/incrementalFields", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSelectiveMode/shape/enum/value/nonincrementalFields", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSelectiveMode/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSelectiveMode", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFieldReferenceType/shape/enum/value/Model", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFieldReferenceType/shape/enum/value/Target", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFieldReferenceType/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFieldReferenceType", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction/shape/enum/value/Equality", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction/shape/enum/value/Inequality", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction/shape/enum/value/IsNull", @@ -586,18 +1629,36 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction/shape/enum/value/StringLike", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction/shape/enum/value/StringNotLike", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction/shape/enum/value/StringMatchesTrimmed", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JsonschemaForm/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JsonschemaForm", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:LabelLabel/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:LabelLabel", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest/shape/object/property/example", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest/shape/object/property/label", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest/shape/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest/shape/object/property/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelation/shape/object/property/from", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelation/shape/object/property/to", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelation/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelation/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelation", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelationTo/shape/object/property/field", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelationTo/shape/object/property/model_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelationTo/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelationTo/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelationTo", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse/shape/object/property/code", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse/shape/object/property/context", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse/shape/object/property/error", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse/shape/object/property/status", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency/shape/enum/value/manual", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency/shape/enum/value/continuous", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency/shape/enum/value/hourly", @@ -608,13 +1669,20 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency/shape/enum/value/runafter", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency/shape/enum/value/multi", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency/shape/enum/value/dbtcloud", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption/shape/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption/shape/object/property/description", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption/shape/object/property/frequency", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption/shape/object/property/label", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SchemaIdentityFunction/shape/enum/value/Equality", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SchemaIdentityFunction/shape/enum/value/ISubstring", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SchemaIdentityFunction/shape/enum/value/OneOf", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SchemaIdentityFunction/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SchemaIdentityFunction", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape/object/property/does_not_report_operation_counts", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape/object/property/new_target_label", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape/object/property/optional_target_mappings", @@ -625,6 +1693,9 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape/object/property/supports_target_filters", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape/object/property/target_creator", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape/object/property/use_field_names_as_labels", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus/shape/enum/value/created", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus/shape/enum/value/scheduled", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus/shape/enum/value/queued", @@ -636,20 +1707,52 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus/shape/enum/value/completed", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus/shape/enum/value/failed", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus/shape/enum/value/interrupted", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponse/shape/object/property/value", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncInput/shape/object/property/active", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncInput/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncInput/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncInput", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncOutput/shape/object/property/active", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncOutput/shape/object/property/id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncOutput/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncOutput/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncOutput", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchema/shape/object/property/enabled", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchema/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchema/shape/object/property/partition_key", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchema/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchema/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchema", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchemaEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchemaEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchemaEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchemaEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDest/shape/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDest/shape/object/property/modes", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDest/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDest/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDest", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDestEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDestEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDestEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDestEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncListEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncListEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncListEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncListEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape/object/property/active", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape/object/property/destination_configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape/object/property/destination_connection_id", @@ -662,25 +1765,61 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape/object/property/schedule", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape/object/property/source_configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape/object/property/source_connection_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSource/shape/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSource/shape/object/property/schemas", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSource/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSource/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSource", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSourceEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSourceEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSourceEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSourceEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConfigurationValue/shape/object/property/items", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConfigurationValue/shape/object/property/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConfigurationValue/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConfigurationValue/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConfigurationValue", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionListResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionListResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionListResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionListResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMeta/shape/object/property/has_items", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMeta/shape/object/property/items", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMeta/shape/object/property/requires_one_of", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMeta/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMeta/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMeta", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMetaResponse/shape/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMetaResponse/shape/object/property/items", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMetaResponse/shape/object/property/requires_one_of", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMetaResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMetaResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMetaResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValue/shape/object/property/label", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValue/shape/object/property/value", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValue/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValue/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValue", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResp/shape/object/property/allows_creation", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResp/shape/object/property/values", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResp/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResp/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResp", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape/object/property/api_calls_last_24_hours", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape/object/property/id", @@ -690,15 +1829,30 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape/object/property/status", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape/object/property/status_error", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape/object/property/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType/shape/object/property/envConfig", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType/shape/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType/shape/object/property/use_oauth", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeSchema/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeSchema/shape/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeSchema/shape/object/property/operations", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeSchema/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeSchema/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeSchema", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/auth_code", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/auth_url", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/configuration", @@ -709,6 +1863,9 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/status", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/status_error", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape/object/property/additional_fields", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape/object/property/connection_id", @@ -721,34 +1878,74 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape/object/property/policies", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape/object/property/relations", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape/object/property/tracking_columns", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2EnricherConfiguration/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2EnricherConfiguration", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2EnricherMapping/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2EnricherMapping", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment/shape/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment/shape/object/property/connection_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment/shape/object/property/enricher_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment/shape/object/property/fields", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment/shape/object/property/mappings", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event/shape/object/property/created_at", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event/shape/object/property/event", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event/shape/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event/shape/object/property/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventTypesEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventTypesEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventTypesEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventTypesEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventsEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventsEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventsEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventsEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts/shape/object/property/error", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts/shape/object/property/insert", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts/shape/object/property/total", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts/shape/object/property/update", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogResponse/shape/object/property/expires", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogResponse/shape/object/property/urls", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogsResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogsResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogsResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogsResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape/object/property/field", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape/object/property/field_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape/object/property/field_type", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape/object/property/function", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape/object/property/label", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape/object/property/value", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetConnectionMetaEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetConnectionMetaEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetConnectionMetaEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetConnectionMetaEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape/object/property/completed_at", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape/object/property/counts", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape/object/property/created_at", @@ -757,7 +1954,13 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape/object/property/started_at", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape/object/property/status", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape/object/property/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape/object/property/email", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape/object/property/is_organization", @@ -767,30 +1970,63 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape/object/property/organization_name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape/object/property/role", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity/shape/object/property/function", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity/shape/object/property/new_field", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity/shape/object/property/remote_field_type_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity/shape/object/property/source", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity/shape/object/property/target", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:IdentityFunction/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:IdentityFunction/shape/object/property/label", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:IdentityFunction/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:IdentityFunction/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:IdentityFunction", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse/shape/object/property/error", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse/shape/object/property/job_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse/shape/object/property/result", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse/shape/object/property/status", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse/shape/object/property/type", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListBulkSchemaEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListBulkSchemaEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListBulkSchemaEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListBulkSchemaEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListExecutionResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListExecutionResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListExecutionResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListExecutionResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListPoliciesResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListPoliciesResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListPoliciesResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListPoliciesResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListModelSyncResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListModelSyncResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListModelSyncResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListModelSyncResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListUsersEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListUsersEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListUsersEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListUsersEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape/object/property/description", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape/object/property/label", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape/object/property/mode", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape/object/property/requires_identity", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape/object/property/supports_field_sync_mode", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape/object/property/supports_target_filters", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape/object/property/description", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape/object/property/example", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape/object/property/id", @@ -800,8 +2036,17 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape/object/property/type", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape/object/property/unique", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape/object/property/user_added", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelFieldResponse/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelFieldResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelFieldResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelFieldResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelListResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelListResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelListResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelListResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape/object/property/connection_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape/object/property/enricher", @@ -816,44 +2061,97 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape/object/property/tracking_columns", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape/object/property/type", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape/object/property/version", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponseEnvelope/shape/object/property/data", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponseEnvelope/shape/object/property/job", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSample/shape/object/property/records", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSample/shape/object/property/warnings", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSample/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSample/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSample", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSampleResponseEnvelope/shape/object/property/data", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSampleResponseEnvelope/shape/object/property/job", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSampleResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSampleResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSampleResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization/shape/object/property/issuer", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization/shape/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization/shape/object/property/sso_domain", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization/shape/object/property/sso_org_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationsEnvelope/shape/object/property/data", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape/object/property/field", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape/object/property/field_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationsEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationsEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationsEnvelope", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape/object/property/field", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape/object/property/field_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape/object/property/function", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape/object/property/override", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape/object/property/value", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyAction/shape/object/property/action", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyAction/shape/object/property/role_ids", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyAction/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyAction/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyAction", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse/shape/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse/shape/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse/shape/object/property/policy_actions", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse/shape/object/property/system", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Relation/shape/object/property/from", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Relation/shape/object/property/to", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Relation/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Relation/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Relation", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RelationTo/shape/object/property/field", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RelationTo/shape/object/property/model_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RelationTo/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RelationTo/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RelationTo", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleListResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleListResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleListResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleListResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse/shape/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse/shape/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse/shape/object/property/system", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RunAfter/shape/object/property/bulk_sync_ids", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RunAfter/shape/object/property/sync_ids", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RunAfter/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RunAfter/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RunAfter", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2SampleRecord/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2SampleRecord", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape/object/property/connection_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape/object/property/day_of_month", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape/object/property/day_of_week", @@ -863,25 +2161,49 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape/object/property/minute", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape/object/property/month", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape/object/property/run_after", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponse/shape/object/property/schedule_options", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Source/shape/object/property/field", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Source/shape/object/property/model_id", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Source/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Source/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Source", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseSchema/shape/object/property/created_at", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseSchema/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseSchema/shape/object/property/status", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseSchema/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseSchema/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseSchema", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape/object/property/description", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape/object/property/label", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape/object/property/requires_identity", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape/object/property/supports_field_sync_mode", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape/object/property/supports_target_filters", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField/shape/object/property/new", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField/shape/object/property/override_value", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField/shape/object/property/source", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField/shape/object/property/sync_mode", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField/shape/object/property/target", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape/object/property/active", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape/object/property/fields", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape/object/property/filter_logic", @@ -897,17 +2219,32 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape/object/property/schedule", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape/object/property/sync_all_records", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape/object/property/target", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusResponse/shape/object/property/current_execution", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusResponse/shape/object/property/last_execution", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusResponse/shape/object/property/next_execution_time", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape/object/property/configuration", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape/object/property/connection_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape/object/property/filter_logic", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape/object/property/new_name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape/object/property/object", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape/object/property/search_values", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape/object/property/association", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape/object/property/createable", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape/object/property/description", @@ -920,1390 +2257,53 @@ "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape/object/property/supports_identity", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape/object/property/type", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape/object/property/updateable", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape/object/property/fields", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape/object/property/modes", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape/object/property/name", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape/object/property/properties", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape/object/property/refreshed_at", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponseEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponseEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponseEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponseEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User/shape/object/property/email", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User/shape/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User/shape/object/property/role", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:UserEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:UserEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:UserEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:UserEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook/shape/object/property/created_at", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook/shape/object/property/endpoint", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook/shape/object/property/id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook/shape/object/property/organization_id", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook/shape/object/property/secret", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookListEnvelope/shape/object/property/data", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookListEnvelope/shape/object", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookListEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookListEnvelope", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WorkTaskStatus/shape/enum/value/running", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WorkTaskStatus/shape/enum/value/done", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WorkTaskStatus/shape/enum/value/failed", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/global-headers/X-Polytomic-Version", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/error/1/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/error/1/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/error/1/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/3/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/3/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/4/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/5/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/1/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/error/1/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/error/1/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/1/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/1/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/1/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/1/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/error/1/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/error/1/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/3/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/4/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/5/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/1/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/2/403/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/3/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/4/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/error/1/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/1/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/1/404/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/response", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/0/401/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/1/422/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/2/500/error/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JsonschemaForm/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:LabelLabel/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2EnricherConfiguration/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2EnricherMapping/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2SampleRecord/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/request/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ApiError/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkItemizedSchedule/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkMultiScheduleConfiguration/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelation/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelationTo/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncInput/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncOutput/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchema/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchemaEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDest/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDestEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncListEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSource/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSourceEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConfigurationValue/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionListResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMeta/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMetaResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValue/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResp/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeSchema/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventTypesEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventsEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogsResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetConnectionMetaEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:IdentityFunction/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListBulkSchemaEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListExecutionResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListPoliciesResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListModelSyncResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListUsersEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelFieldResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelListResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSample/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSampleResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationsEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyAction/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Relation/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RelationTo/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleListResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RunAfter/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Source/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseSchema/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponseEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:UserEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookListEnvelope/shape/object", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkDiscover/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSelectiveMode/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFieldReferenceType/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JsonschemaForm", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:LabelLabel", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SchemaIdentityFunction/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2EnricherConfiguration", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2EnricherMapping", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2SampleRecord", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WorkTaskStatus/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/error/1/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/error/1/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/error/1/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/3/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/3/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/4/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/error/5/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/example/6", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/1/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/error/1/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/error/1/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/1/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/1/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/1/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/1/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/error/1/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/error/1/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/3/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/4/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/error/5/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/example/6", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/1/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/2/403", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/3/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/error/4/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/example/5", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs/example/4", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/error/1/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/1/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/1/404", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/0/401", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/1/422", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/error/2/500", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/0", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/1", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/2", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/example/3", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update/request", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ApiError/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkDiscover", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkItemizedSchedule/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkMultiScheduleConfiguration/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSelectiveMode", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFieldReferenceType", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:FilterFunction", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelation/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelationTo/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleFrequency", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SchemaIdentityFunction", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionStatus", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncInput/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncOutput/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchema/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchemaEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDest/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDestEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncListEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSource/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSourceEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConfigurationValue/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionListResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMeta/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMetaResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValue/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResp/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeSchema/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventTypesEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventsEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogsResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetConnectionMetaEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:IdentityFunction/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListBulkSchemaEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListExecutionResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListPoliciesResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListModelSyncResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListUsersEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelFieldResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelListResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSample/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSampleResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationsEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyAction/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Relation/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RelationTo/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleListResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RunAfter/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Source/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseSchema/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponseEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:UserEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookEnvelope/shape", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookListEnvelope/shape", + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WorkTaskStatus/shape", "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WorkTaskStatus", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ApiError", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkItemizedSchedule", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkMultiScheduleConfiguration", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchedule", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelModelFieldRequest", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelation", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelRelationTo", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RestErrResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleScheduleOption", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncDestinationProperties", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:APIKeyResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncInput", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ActivateSyncOutput", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchema", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSchemaEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDest", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncDestEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncListEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSource", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:BulkSyncSourceEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConfigurationValue", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionListResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMeta", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionMetaResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValue", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResp", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionParameterValuesResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionResponseSchema", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionType", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ConnectionTypeSchema", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateConnectionResponseSchema", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:CreateModelRequest", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Enrichment", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Event", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventTypesEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:EventsEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionCounts", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ExecutionLogsResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Filter", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetConnectionMetaEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetExecutionResponseSchema", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:GetIdentityResponseSchema", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Identity", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:IdentityFunction", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:JobResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListBulkSchemaEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListExecutionResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListPoliciesResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListModelSyncResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ListUsersEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Mode", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelField", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelFieldResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelListResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSample", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSampleResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Organization", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:OrganizationsEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Override", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyAction", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:PolicyResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Relation", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RelationTo", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleListResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RoleResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:RunAfter", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Schedule", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ScheduleOptionResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Source", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:StartModelSyncResponseSchema", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SupportedMode", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncField", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:ModelSyncResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:SyncStatusResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Target", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetField", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponse", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:TargetResponseEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:User", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:UserEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:Webhook", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/type-definition/type_:WebhookListEnvelope", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetDestination", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.GetSource", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Create", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Remove", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Update", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync.Activate", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Patch", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_bulkSync/schemas.Update", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTypes", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Create", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Remove", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.Update", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetParameterValues", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSource", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetSourceFields", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTarget", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_connections.GetTargetFields", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Post", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Preview", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Create", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Remove", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Update", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_models.Sample", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_events.GetTypes", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_jobs.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_identity.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Create", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Remove", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_organization.Update", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Create", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Remove", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.Update", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_users.CreateApiKey", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Create", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Remove", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/policies.Update", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Create", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Remove", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_permissions/roles.Update", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Create", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetScheduleOptions", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Remove", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Update", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Activate", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.Start", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync.GetStatus", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogUrls", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_modelSync/executions.GetLogs", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.List", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Create", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Get", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Remove", - "9b972bf3-4f92-48dd-8a15-386f34ae82e1/endpoint/endpoint_webhooks.Update" + "9b972bf3-4f92-48dd-8a15-386f34ae82e1/global-headers/X-Polytomic-Version" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-d051ed90-658a-4822-a2ee-f77a495b9085.json b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-d051ed90-658a-4822-a2ee-f77a495b9085.json index a8e61c9221..64ffe16a95 100644 --- a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-d051ed90-658a-4822-a2ee-f77a495b9085.json +++ b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitionKeys-d051ed90-658a-4822-a2ee-f77a495b9085.json @@ -1,16 +1,25 @@ [ + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/error/1/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/error/1/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request/object/property/active", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request/object/property/automatically_add_new_fields", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request/object/property/automatically_add_new_objects", @@ -26,40 +35,66 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request/object/property/schemas", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request/object/property/source_configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request/object/property/source_connection_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/query/refresh_schemas", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/request/object/property/active", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/request/object/property/automatically_add_new_fields", @@ -76,275 +111,466 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/request/object/property/schemas", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/request/object/property/source_configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/request/object/property/source_connection_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/query/refresh_schemas", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/request/object/property/resync", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/request/object/property/schemas", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/request/object/property/test", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/error/1/401", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/query/include_fields", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/path/exec_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/query/filters", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/request/object/property/schemas", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/path/schema_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/path/schema_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/request/object/property/enabled", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/request/object/property/fields", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/request/object/property/partition_key", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/error/1/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/error/1/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/error/1/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/error/1/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request/object/property/organization_id", @@ -352,63 +578,112 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request/object/property/redirect_url", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request/object/property/type", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request/object/property/validate", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/3/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/3/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request/object/property/connection", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request/object/property/redirect_url", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request/object/property/type", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request/object/property/whitelist", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/0/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/0/snippet/typescript/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/1/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/1/snippet/typescript/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/2/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/2/snippet/typescript/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/3/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/3/snippet/typescript/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/4/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/4/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/2/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/2/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/3/500", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/0/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/0/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/1/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/1/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/1", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/2/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/2/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/3/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/3/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/4/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/4/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/request/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/request/object/property/name", @@ -417,194 +692,327 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/request/object/property/reconnect", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/request/object/property/type", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/request/object/property/validate", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/4/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/4/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/5/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/5/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/5", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/6/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/6/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/6/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/6/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/6", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/query/force", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/3/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/3/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/query/params", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/query/type", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/query/search", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/query/target", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/query/refresh", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request/object/property/active", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request/object/property/enricher", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request/object/property/fields", @@ -620,59 +1028,100 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request/object/property/schedule", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request/object/property/sync_all_records", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request/object/property/target", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/3/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/3/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/request/object/property/active", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/request/object/property/enricher", @@ -689,304 +1138,521 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/request/object/property/schedule", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/request/object/property/sync_all_records", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/request/object/property/target", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/4/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/4/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/5/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/5/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/5", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/6/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/6/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/6/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/6/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/6", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/path/id", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0/snippet/python/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0/snippet/typescript/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0/snippet/go/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/1/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/1/snippet/python/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/3/500", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0/snippet/python/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/1/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/request/object/property/identities", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/request/object/property/resync", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/path/schema_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/path/schema_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/path/connection_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/request/object/property/configuration", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/query/async", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/query/async", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/query/async", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/query/async", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/request/object/property/additional_fields", @@ -1001,165 +1667,285 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/request/object/property/policies", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/request/object/property/relations", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/request/object/property/tracking_columns", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/query/async", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/query/async", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/0/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/1/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/2/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/3/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/4/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/query/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/query/type", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/query/starting_after", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/query/ending_before", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/query/limit", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/1/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/1/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/error/0/401", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/1", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/path/type", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0/snippet/python/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0/snippet/typescript/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0/snippet/go/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/1/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/1/snippet/python/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/3/500", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0/snippet/python/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/1/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/error/1/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/error/1/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/error/1/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/error/1/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request/object/property/client_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request/object/property/client_secret", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request/object/property/issuer", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request/object/property/sso_domain", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request/object/property/sso_org_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/1/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/1/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/request/object/property/client_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/request/object/property/client_secret", @@ -1167,516 +1953,873 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/request/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/request/object/property/sso_domain", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/request/object/property/sso_org_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/1/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/1/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/path/org_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/path/org_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/request/object/property/email", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/request/object/property/role", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/1/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/1/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/path/org_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/path/org_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/request/object/property/email", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/request/object/property/role", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/1/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/1/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/path/org_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/path/org_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/query/force", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/error/1/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/error/1/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/request/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/request/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/request/object/property/policy_actions", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/request/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/request/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/request/object/property/policy_actions", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/error/1/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/error/1/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/request/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/request/object/property/organization_id", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0/snippet/python/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0/snippet/typescript/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0/snippet/go/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1/snippet/python/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1/snippet/typescript/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1/snippet/go/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2/snippet/curl/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2/snippet/python/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2/snippet/typescript/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/4/500", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0/snippet/python/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1/snippet/python/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2/snippet/curl/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2/snippet/python/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2/snippet/typescript/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/request/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/request/object/property/organization_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/2/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/2/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/3/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/3/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/4/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/4/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/4", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/5/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/5/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/5/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/5/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/5", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/1/403/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/1/403", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/path/sync_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/path/sync_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/path/sync_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/path/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/path/sync_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/path/type", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/path/filename", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/3", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/4/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/4/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/4/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/4/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/4", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/error/1/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/error/1/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/request/object/property/endpoint", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/request/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/request/object/property/secret", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/1/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/1/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/error/1/404", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/2", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/path/id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/request/object/property/endpoint", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/request/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/request/object/property/secret", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/request/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/request", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/response", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/1/422/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/1/422", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/path/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/0/401/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/0/401", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/1/404/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/1/404", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/2/500/error/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/2/500", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/0/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/0/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/0/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/0/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/1/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/1/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/1/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/1/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/1", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/2/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/2/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/2/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/2/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/2", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/3/snippet/curl/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/3/snippet/python/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/3/snippet/typescript/0", "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/3/snippet/go/0", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/3", + "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ApiError/shape/object/property/message", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ApiError/shape/object/property/metadata", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ApiError/shape/object/property/status", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ApiError/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ApiError/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ApiError", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkDiscover/shape/enum/value/all", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkDiscover/shape/enum/value/onlyIncremental", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkDiscover/shape/enum/value/onlyNonIncremental", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkDiscover/shape/enum/value/none", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkDiscover/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkDiscover", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus/shape/enum/value/created", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus/shape/enum/value/scheduled", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus/shape/enum/value/running", @@ -1687,10 +2830,18 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus/shape/enum/value/failed", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus/shape/enum/value/processing", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus/shape/enum/value/errors", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkItemizedSchedule/shape/object/property/item", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkItemizedSchedule/shape/object/property/schedule", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkItemizedSchedule/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkItemizedSchedule/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkItemizedSchedule", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkMultiScheduleConfiguration/shape/object/property/schedules", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkMultiScheduleConfiguration/shape/object/property/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkMultiScheduleConfiguration/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkMultiScheduleConfiguration/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkMultiScheduleConfiguration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape/object/property/day_of_month", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape/object/property/day_of_week", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape/object/property/frequency", @@ -1698,6 +2849,9 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape/object/property/minute", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape/object/property/month", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape/object/property/multi", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/created", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/scheduled", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/running", @@ -1705,11 +2859,17 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/canceled", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/completed", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus/shape/enum/value/failed", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSelectiveMode/shape/enum/value/none", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSelectiveMode/shape/enum/value/incrementalFields", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSelectiveMode/shape/enum/value/nonincrementalFields", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSelectiveMode/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSelectiveMode", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFieldReferenceType/shape/enum/value/Model", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFieldReferenceType/shape/enum/value/Target", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFieldReferenceType/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFieldReferenceType", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction/shape/enum/value/Equality", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction/shape/enum/value/Inequality", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction/shape/enum/value/IsNull", @@ -1735,18 +2895,36 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction/shape/enum/value/StringLike", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction/shape/enum/value/StringNotLike", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction/shape/enum/value/StringMatchesTrimmed", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JsonschemaForm/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JsonschemaForm", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:LabelLabel/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:LabelLabel", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest/shape/object/property/example", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest/shape/object/property/label", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest/shape/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest/shape/object/property/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelation/shape/object/property/from", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelation/shape/object/property/to", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelation/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelation/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelation", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelationTo/shape/object/property/field", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelationTo/shape/object/property/model_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelationTo/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelationTo/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelationTo", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse/shape/object/property/code", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse/shape/object/property/context", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse/shape/object/property/error", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse/shape/object/property/status", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency/shape/enum/value/manual", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency/shape/enum/value/continuous", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency/shape/enum/value/hourly", @@ -1757,17 +2935,27 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency/shape/enum/value/runafter", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency/shape/enum/value/multi", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency/shape/enum/value/dbtcloud", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption/shape/object/property/description", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption/shape/object/property/frequency", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption/shape/object/property/label", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation/shape/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation/shape/object/property/reference_to", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation/shape/object/property/referenced_field", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaIdentityFunction/shape/enum/value/Equality", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaIdentityFunction/shape/enum/value/ISubstring", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaIdentityFunction/shape/enum/value/OneOf", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaIdentityFunction/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaIdentityFunction", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape/object/property/does_not_report_operation_counts", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape/object/property/new_target_label", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape/object/property/optional_target_mappings", @@ -1778,6 +2966,9 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape/object/property/supports_target_filters", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape/object/property/target_creator", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape/object/property/use_field_names_as_labels", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus/shape/enum/value/created", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus/shape/enum/value/scheduled", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus/shape/enum/value/queued", @@ -1789,17 +2980,43 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus/shape/enum/value/completed", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus/shape/enum/value/failed", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus/shape/enum/value/interrupted", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponse/shape/object/property/value", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncInput/shape/object/property/active", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncInput/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncInput/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncInput", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncOutput/shape/object/property/active", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncOutput/shape/object/property/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncOutput/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncOutput/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncOutput", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDest/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDest/shape/object/property/modes", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDest/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDest/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDest", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDestEnvelope/shape/object/property/data", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncListEnvelope/shape/object/property/data", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object/property/active", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDestEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDestEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDestEnvelope", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncListEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncListEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncListEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncListEnvelope", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object/property/active", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object/property/destination_configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object/property/destination_connection_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object/property/discover", @@ -1811,22 +3028,52 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object/property/schedule", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object/property/source_configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object/property/source_connection_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConfigurationValue/shape/object/property/items", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConfigurationValue/shape/object/property/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConfigurationValue/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConfigurationValue/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConfigurationValue", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionListResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionListResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionListResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionListResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMeta/shape/object/property/has_items", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMeta/shape/object/property/items", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMeta/shape/object/property/requires_one_of", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMeta/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMeta/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMeta", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMetaResponse/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMetaResponse/shape/object/property/items", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMetaResponse/shape/object/property/requires_one_of", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMetaResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMetaResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMetaResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValue/shape/object/property/label", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValue/shape/object/property/value", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValue/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValue/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValue", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResp/shape/object/property/allows_creation", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResp/shape/object/property/values", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResp/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResp/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResp", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape/object/property/api_calls_last_24_hours", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape/object/property/id", @@ -1836,15 +3083,30 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape/object/property/status", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape/object/property/status_error", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape/object/property/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType/shape/object/property/envConfig", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType/shape/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType/shape/object/property/use_oauth", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeSchema/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeSchema/shape/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeSchema/shape/object/property/operations", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeSchema/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeSchema/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeSchema", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/auth_code", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/auth_url", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/configuration", @@ -1855,6 +3117,9 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/status", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/status_error", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape/object/property/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape/object/property/additional_fields", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape/object/property/connection_id", @@ -1867,34 +3132,74 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape/object/property/policies", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape/object/property/relations", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape/object/property/tracking_columns", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2EnricherConfiguration/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2EnricherConfiguration", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2EnricherMapping/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2EnricherMapping", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment/shape/object/property/connection_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment/shape/object/property/enricher_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment/shape/object/property/fields", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment/shape/object/property/mappings", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event/shape/object/property/created_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event/shape/object/property/event", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event/shape/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event/shape/object/property/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventTypesEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventTypesEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventTypesEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventTypesEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventsEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventsEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventsEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventsEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts/shape/object/property/error", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts/shape/object/property/insert", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts/shape/object/property/total", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts/shape/object/property/update", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogResponse/shape/object/property/expires", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogResponse/shape/object/property/urls", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogsResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogsResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogsResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogsResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape/object/property/field", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape/object/property/field_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape/object/property/field_type", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape/object/property/function", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape/object/property/label", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape/object/property/value", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetConnectionMetaEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetConnectionMetaEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetConnectionMetaEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetConnectionMetaEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape/object/property/completed_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape/object/property/counts", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape/object/property/created_at", @@ -1903,7 +3208,13 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape/object/property/started_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape/object/property/status", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape/object/property/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape/object/property/email", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape/object/property/is_organization", @@ -1913,29 +3224,59 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape/object/property/organization_name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape/object/property/role", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity/shape/object/property/function", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity/shape/object/property/new_field", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity/shape/object/property/remote_field_type_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity/shape/object/property/source", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity/shape/object/property/target", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:IdentityFunction/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:IdentityFunction/shape/object/property/label", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:IdentityFunction/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:IdentityFunction/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:IdentityFunction", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse/shape/object/property/error", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse/shape/object/property/job_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse/shape/object/property/result", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse/shape/object/property/status", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse/shape/object/property/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListExecutionResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListExecutionResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListExecutionResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListExecutionResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListPoliciesResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListPoliciesResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListPoliciesResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListPoliciesResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListModelSyncResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListModelSyncResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListModelSyncResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListModelSyncResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListUsersEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListUsersEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListUsersEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListUsersEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape/object/property/description", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape/object/property/label", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape/object/property/mode", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape/object/property/requires_identity", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape/object/property/supports_field_sync_mode", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape/object/property/supports_target_filters", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape/object/property/description", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape/object/property/example", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape/object/property/id", @@ -1945,8 +3286,17 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape/object/property/type", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape/object/property/unique", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape/object/property/user_added", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelFieldResponse/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelFieldResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelFieldResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelFieldResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelListResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelListResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelListResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelListResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape/object/property/connection_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape/object/property/enricher", @@ -1961,44 +3311,97 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape/object/property/tracking_columns", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape/object/property/type", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape/object/property/version", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponseEnvelope/shape/object/property/data", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponseEnvelope/shape/object/property/job", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSample/shape/object/property/records", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSample/shape/object/property/warnings", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSample/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSample/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSample", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSampleResponseEnvelope/shape/object/property/data", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSampleResponseEnvelope/shape/object/property/job", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSampleResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSampleResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSampleResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization/shape/object/property/issuer", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization/shape/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization/shape/object/property/sso_domain", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization/shape/object/property/sso_org_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationsEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationsEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationsEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationsEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override/shape/object/property/field", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override/shape/object/property/field_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override/shape/object/property/function", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override/shape/object/property/override", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override/shape/object/property/value", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyAction/shape/object/property/action", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyAction/shape/object/property/role_ids", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyAction/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyAction/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyAction", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse/shape/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse/shape/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse/shape/object/property/policy_actions", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse/shape/object/property/system", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Relation/shape/object/property/from", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Relation/shape/object/property/to", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Relation/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Relation/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Relation", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RelationTo/shape/object/property/field", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RelationTo/shape/object/property/model_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RelationTo/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RelationTo/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RelationTo", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleListResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleListResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleListResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleListResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse/shape/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse/shape/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse/shape/object/property/system", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RunAfter/shape/object/property/bulk_sync_ids", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RunAfter/shape/object/property/sync_ids", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RunAfter/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RunAfter/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RunAfter", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2SampleRecord/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2SampleRecord", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape/object/property/connection_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape/object/property/day_of_month", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape/object/property/day_of_week", @@ -2008,25 +3411,49 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape/object/property/minute", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape/object/property/month", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape/object/property/run_after", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponse/shape/object/property/schedule_options", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Source/shape/object/property/field", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Source/shape/object/property/model_id", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Source/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Source/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Source", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseSchema/shape/object/property/created_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseSchema/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseSchema/shape/object/property/status", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseSchema/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseSchema/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseSchema", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape/object/property/description", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape/object/property/label", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape/object/property/requires_identity", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape/object/property/supports_field_sync_mode", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape/object/property/supports_target_filters", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField/shape/object/property/new", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField/shape/object/property/override_value", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField/shape/object/property/source", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField/shape/object/property/sync_mode", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField/shape/object/property/target", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape/object/property/active", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape/object/property/fields", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape/object/property/filter_logic", @@ -2042,17 +3469,32 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape/object/property/schedule", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape/object/property/sync_all_records", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape/object/property/target", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusResponse/shape/object/property/current_execution", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusResponse/shape/object/property/last_execution", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusResponse/shape/object/property/next_execution_time", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape/object/property/connection_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape/object/property/filter_logic", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape/object/property/new_name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape/object/property/object", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape/object/property/search_values", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape/object/property/association", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape/object/property/createable", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape/object/property/description", @@ -2065,34 +3507,67 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape/object/property/supports_identity", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape/object/property/type", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape/object/property/updateable", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape/object/property/fields", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape/object/property/modes", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape/object/property/properties", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape/object/property/refreshed_at", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User/shape/object/property/email", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User/shape/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User/shape/object/property/role", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:UserEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:UserEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:UserEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:UserEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook/shape/object/property/created_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook/shape/object/property/endpoint", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook/shape/object/property/organization_id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook/shape/object/property/secret", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookListEnvelope/shape/object/property/data", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField/shape/object/property/enabled", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField/shape/object/property/id", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookListEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookListEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookListEnvelope", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField/shape/object/property/enabled", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField/shape/object/property/obfuscated", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema/shape/object/property/enabled", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema/shape/object/property/fields", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema/shape/object/property/output_name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema/shape/object/property/partition_key", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape/object/property/completed_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape/object/property/created_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape/object/property/id", @@ -2102,7 +3577,13 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape/object/property/started_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape/object/property/status", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape/object/property/type", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecutionEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecutionEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecutionEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecutionEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/completed_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/error_count", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/record_count", @@ -2110,1584 +3591,103 @@ "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/started_at", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/status", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape/object/property/status_message", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSource/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSource/shape/object/property/schemas", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSource/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSource/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSource", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceSchemaEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatus/shape/object/property/cache_status", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatus/shape/object/property/last_refresh_finished", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatus/shape/object/property/last_refresh_started", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatus/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatus/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatus", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatusEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatusEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatusEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatusEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusResponse/shape/object/property/current_execution", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusResponse/shape/object/property/last_execution", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusResponse/shape/object/property/next_execution_time", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponse/shape/object/property/redirect_url", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponse/shape/object/property/token", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSchema/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSchema/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSchema/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSchema", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSyncExecutionsEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PickValue/shape/object/property/label", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PickValue/shape/object/property/value", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PickValue/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PickValue/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PickValue", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schema/shape/object/property/fields", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schema/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schema/shape/object/property/name", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schema/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schema/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schema", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape/object/property/association", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape/object/property/id", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape/object/property/name", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape/object/property/remote_type", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape/object/property/type", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape/object/property/values", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaRecordsResponseEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaRecordsResponseEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaRecordsResponseEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaRecordsResponseEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetModelSyncSourceMetaEnvelope/shape/object/property/data", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetModelSyncSourceMetaEnvelope/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetModelSyncSourceMetaEnvelope/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetModelSyncSourceMetaEnvelope", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SourceMeta/shape/object/property/has_items", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SourceMeta/shape/object/property/items", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SourceMeta/shape/object/property/requires_one_of", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SourceMeta/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SourceMeta/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SourceMeta", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncSourceMetaResponse/shape/object/property/configuration", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncSourceMetaResponse/shape/object/property/items", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncSourceMetaResponse/shape/object/property/requires_one_of", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncSourceMetaResponse/shape/object", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncSourceMetaResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncSourceMetaResponse", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WorkTaskStatus/shape/enum/value/running", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WorkTaskStatus/shape/enum/value/done", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WorkTaskStatus/shape/enum/value/failed", - "d051ed90-658a-4822-a2ee-f77a495b9085/global-headers/X-Polytomic-Version", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/error/1/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/error/1/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/error/1/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/3/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/2/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/4/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/5/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/3/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/3/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/4/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/5/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/1/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/error/1/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/error/1/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/1/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/1/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/1/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/1/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/error/1/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/error/1/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/2/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/3/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/4/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/1/403/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/error/1/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/1/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/response", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/1/422/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/0/401/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/1/404/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/2/500/error/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JsonschemaForm/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:LabelLabel/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2EnricherConfiguration/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2EnricherMapping/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2SampleRecord/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/request/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ApiError/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkItemizedSchedule/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkMultiScheduleConfiguration/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelation/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelationTo/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncInput/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncOutput/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDest/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDestEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncListEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConfigurationValue/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionListResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMeta/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMetaResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValue/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResp/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeSchema/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventTypesEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventsEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogsResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetConnectionMetaEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:IdentityFunction/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListExecutionResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListPoliciesResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListModelSyncResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListUsersEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelFieldResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelListResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSample/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSampleResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationsEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyAction/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Relation/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RelationTo/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleListResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RunAfter/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Source/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseSchema/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:UserEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookListEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecutionEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSource/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatus/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatusEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSchema/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PickValue/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schema/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaRecordsResponseEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetModelSyncSourceMetaEnvelope/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SourceMeta/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncSourceMetaResponse/shape/object", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkDiscover/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSelectiveMode/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFieldReferenceType/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JsonschemaForm", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:LabelLabel", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaIdentityFunction/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2EnricherConfiguration", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2EnricherMapping", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2SampleRecord", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WorkTaskStatus/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/error/1/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/error/1/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/error/1/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/3/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/2/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/4/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/error/5/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/example/6", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/3/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/3/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/error/1/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/4/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/error/5/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/example/6", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/1/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/error/1/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/error/1/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/1/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/1/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/1/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/1/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/error/1/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/error/1/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/2/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/3/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/error/4/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/example/5", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/1/403", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/0/400", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/1/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/2/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/error/3/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs/example/4", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/error/1/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/1/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/1/422", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/0/401", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/1/404", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/error/2/500", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/0", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/1", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/2", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove/example/3", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update/request", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ApiError/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkDiscover", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkExecutionStatus", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkItemizedSchedule/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkMultiScheduleConfiguration/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaExecutionStatus", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSelectiveMode", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFieldReferenceType", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:FilterFunction", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelation/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelationTo/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleFrequency", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaIdentityFunction", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionStatus", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncInput/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncOutput/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDest/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDestEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncListEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConfigurationValue/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionListResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMeta/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMetaResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValue/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResp/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeSchema/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventTypesEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventsEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogsResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetConnectionMetaEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:IdentityFunction/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListExecutionResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListPoliciesResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListModelSyncResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListUsersEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelFieldResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelListResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSample/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSampleResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationsEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyAction/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Relation/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RelationTo/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleListResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RunAfter/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Source/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseSchema/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:UserEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookListEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecutionEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSource/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceSchemaEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatus/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatusEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponse/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSchema/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSyncExecutionsEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PickValue/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schema/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaRecordsResponseEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetModelSyncSourceMetaEnvelope/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SourceMeta/shape", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncSourceMetaResponse/shape", + "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WorkTaskStatus/shape", "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WorkTaskStatus", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ApiError", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkItemizedSchedule", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkMultiScheduleConfiguration", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchedule", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelModelFieldRequest", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelation", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelRelationTo", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RestErrResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleScheduleOption", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaAssociation", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncDestinationProperties", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:APIKeyResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncInput", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ActivateSyncOutput", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDest", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncDestEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncListEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConfigurationValue", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionListResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMeta", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionMetaResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValue", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResp", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionParameterValuesResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionResponseSchema", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionType", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectionTypeSchema", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateConnectionResponseSchema", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:CreateModelRequest", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Enrichment", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Event", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventTypesEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:EventsEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionCounts", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ExecutionLogsResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Filter", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetConnectionMetaEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:V2GetEnrichmentInputFieldsResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetExecutionResponseSchema", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetIdentityResponseSchema", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Identity", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:IdentityFunction", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:JobResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListExecutionResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListPoliciesResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListModelSyncResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListUsersEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Mode", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelField", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelFieldResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelListResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSample", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSampleResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Organization", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:OrganizationsEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Override", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyAction", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PolicyResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Relation", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RelationTo", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleListResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RoleResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:RunAfter", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schedule", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ScheduleOptionResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Source", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:StartModelSyncResponseSchema", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SupportedMode", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncField", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SyncStatusResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Target", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetField", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:TargetResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:User", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:UserEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Webhook", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:WebhookListEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkField", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchema", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSchemaEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecution", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncExecutionEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSchemaExecution", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSource", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceSchemaEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatus", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncSourceStatusEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:BulkSyncStatusResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ConnectCardResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSchema", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ListBulkSyncExecutionsEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:PickValue", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:Schema", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaField", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SchemaRecordsResponseEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:GetModelSyncSourceMetaEnvelope", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:SourceMeta", - "d051ed90-658a-4822-a2ee-f77a495b9085/type-definition/type_:ModelSyncSourceMetaResponse", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Create", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Remove", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Activate", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.Start", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetStatus", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetSource", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync.GetDestination", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/executions.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Patch", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_bulkSync/schemas.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetTypes", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Create", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Connect", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.Remove", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_connections.GetParameterValues", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSource", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetSourceFields", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTarget", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetTargetFields", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Create", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetScheduleOptions", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Remove", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Activate", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.Start", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync.GetStatus", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Refresh", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetStatus", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_schemas.GetRecords", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Post", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Preview", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Create", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Remove", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_models.Sample", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_events.GetTypes", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_jobs.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_identity.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Create", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_organization.Remove", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Create", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.Remove", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_users.CreateApiKey", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Create", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/policies.Remove", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Create", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_permissions/roles.Remove", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogUrls", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_modelSync/executions.GetLogs", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.List", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Create", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Get", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Update", - "d051ed90-658a-4822-a2ee-f77a495b9085/endpoint/endpoint_webhooks.Remove" + "d051ed90-658a-4822-a2ee-f77a495b9085/global-headers/X-Polytomic-Version" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitions.json b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitions.json index 092aba0cd7..5a1c9bf27b 100644 --- a/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitions.json +++ b/packages/fdr-sdk/src/__test__/output/polytomic/apiDefinitions.json @@ -37,6 +37,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -142,6 +143,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -154,6 +156,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -378,6 +381,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -390,6 +394,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -402,6 +407,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -414,6 +420,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -635,6 +642,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -647,6 +655,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -659,6 +668,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -671,6 +681,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -882,6 +893,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -894,6 +906,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -906,6 +919,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -918,6 +932,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -930,6 +945,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -1280,6 +1296,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -1292,6 +1309,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -1304,6 +1322,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -1316,6 +1335,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -1328,6 +1348,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -1573,6 +1594,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -1585,6 +1607,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -1716,6 +1739,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -1728,6 +1752,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -1922,6 +1947,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -1934,6 +1960,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -2095,6 +2122,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -2107,6 +2135,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -2119,6 +2148,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -2383,6 +2413,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -2395,6 +2426,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -2407,6 +2439,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -2673,6 +2706,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -2828,6 +2862,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -2977,6 +3012,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -3207,6 +3243,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -3326,6 +3363,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -3338,6 +3376,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -3350,6 +3389,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -3525,6 +3565,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -3537,6 +3578,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -3549,6 +3591,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -3787,6 +3830,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -3799,6 +3843,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -3811,6 +3856,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -3823,6 +3869,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -3835,6 +3882,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -4119,6 +4167,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -4131,6 +4180,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -4547,6 +4597,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -4559,6 +4610,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -4571,6 +4623,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -4583,6 +4636,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -4838,6 +4892,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -4850,6 +4905,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -4862,6 +4918,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -4874,6 +4931,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -5079,6 +5137,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -5091,6 +5150,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -5532,6 +5592,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -5544,6 +5605,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -5556,6 +5618,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -5568,6 +5631,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -5868,6 +5932,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -5880,6 +5945,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6075,6 +6141,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6087,6 +6154,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -6099,6 +6167,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6111,6 +6180,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -6609,6 +6679,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6621,6 +6692,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6633,6 +6705,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -6645,6 +6718,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6657,6 +6731,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -7000,6 +7075,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7012,6 +7088,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -7024,6 +7101,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -7036,6 +7114,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -7321,6 +7400,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7333,6 +7413,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -7533,6 +7614,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -7545,6 +7627,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7557,6 +7640,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -7569,6 +7653,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -7581,6 +7666,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -7866,6 +7952,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7878,6 +7965,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -8101,6 +8189,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -8113,6 +8202,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -8125,6 +8215,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -8137,6 +8228,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -8354,6 +8446,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -8366,6 +8459,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -8501,6 +8595,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -8513,6 +8608,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -8805,6 +8901,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -8817,6 +8914,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -8829,6 +8927,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -8841,6 +8940,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -8853,6 +8953,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -9142,6 +9243,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -9154,6 +9256,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -9166,6 +9269,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -9378,6 +9482,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -9390,6 +9495,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -9402,6 +9508,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -9414,6 +9521,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -9426,6 +9534,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -9814,6 +9923,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -9826,6 +9936,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -9838,6 +9949,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -9850,6 +9962,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -9862,6 +9975,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -9874,6 +9988,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -10207,6 +10322,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -10219,6 +10335,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -10231,6 +10348,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -10420,6 +10538,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -10432,6 +10551,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -10444,6 +10564,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -10456,6 +10577,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -10468,6 +10590,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -10757,6 +10880,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -10769,6 +10893,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -10781,6 +10906,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -10793,6 +10919,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -10805,6 +10932,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -11119,6 +11247,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -11131,6 +11260,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -11143,6 +11273,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -11155,6 +11286,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -11167,6 +11299,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -11474,6 +11607,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -11486,6 +11620,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -11498,6 +11633,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -11510,6 +11646,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -11817,6 +11954,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -11829,6 +11967,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -11841,6 +11980,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -11853,6 +11993,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -12095,6 +12236,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -12107,6 +12249,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -12119,6 +12262,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -12131,6 +12275,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -12417,6 +12562,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -12429,6 +12575,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -12628,6 +12775,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -12640,6 +12788,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -12652,6 +12801,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -12664,6 +12814,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -12988,6 +13139,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -13000,6 +13152,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -13012,6 +13165,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -13271,6 +13425,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -13283,6 +13438,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -13295,6 +13451,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -13307,6 +13464,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -13790,6 +13948,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -13802,6 +13961,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -13814,6 +13974,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -13826,6 +13987,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -14167,6 +14329,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -14179,6 +14342,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -14191,6 +14355,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -14203,6 +14368,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -14509,6 +14675,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -14521,6 +14688,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -14533,6 +14701,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -14708,6 +14877,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -14848,6 +15018,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -14860,6 +15031,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -14872,6 +15044,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -14884,6 +15057,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -15085,6 +15259,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -15097,6 +15272,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -15234,6 +15410,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -15246,6 +15423,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -15492,6 +15670,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -15504,6 +15683,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -15516,6 +15696,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -15717,6 +15898,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -15729,6 +15911,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -15876,6 +16059,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -15888,6 +16072,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -15900,6 +16085,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -16184,6 +16370,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -16196,6 +16383,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -16208,6 +16396,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -16421,6 +16610,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -16433,6 +16623,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -16634,6 +16825,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -16646,6 +16838,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -16658,6 +16851,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -16886,6 +17080,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -16898,6 +17093,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -16910,6 +17106,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -17118,6 +17315,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -17130,6 +17328,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -17142,6 +17341,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -17389,6 +17589,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -17401,6 +17602,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -17413,6 +17615,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -17669,6 +17872,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -17681,6 +17885,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -17693,6 +17898,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -17868,6 +18074,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -17880,6 +18087,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -18083,6 +18291,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -18095,6 +18304,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -18107,6 +18317,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -18119,6 +18330,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -18131,6 +18343,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -18403,6 +18616,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -18415,6 +18629,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -18427,6 +18642,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -18609,6 +18825,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -18621,6 +18838,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -18633,6 +18851,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -18645,6 +18864,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -18907,6 +19127,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -18919,6 +19140,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -18931,6 +19153,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -18943,6 +19166,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -18955,6 +19179,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -19221,6 +19446,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -19233,6 +19459,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -19406,6 +19633,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -19418,6 +19646,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -19430,6 +19659,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -19442,6 +19672,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -19454,6 +19685,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -19718,6 +19950,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -19730,6 +19963,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -19876,6 +20110,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -19888,6 +20123,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -19900,6 +20136,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -19912,6 +20149,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -20152,6 +20390,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -20164,6 +20403,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -20176,6 +20416,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -20188,6 +20429,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -20200,6 +20442,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -20457,6 +20700,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -20469,6 +20713,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -20481,6 +20726,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -20976,6 +21222,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -20988,6 +21235,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -21000,6 +21248,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -21012,6 +21261,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -21024,6 +21274,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -21389,6 +21640,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -21401,6 +21653,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -21552,6 +21805,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -21564,6 +21818,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -21576,6 +21831,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -21833,6 +22089,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -21845,6 +22102,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -21857,6 +22115,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -21869,6 +22128,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -22340,6 +22600,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -22352,6 +22613,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -22364,6 +22626,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -22376,6 +22639,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -22388,6 +22652,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -22400,6 +22665,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -22849,6 +23115,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -22861,6 +23128,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -22873,6 +23141,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -22885,6 +23154,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -23180,6 +23450,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -23192,6 +23463,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -23204,6 +23476,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -23216,6 +23489,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -23228,6 +23502,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -23494,6 +23769,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -23506,6 +23782,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -23518,6 +23795,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -23737,6 +24015,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -23749,6 +24028,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -23938,6 +24218,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -23950,6 +24231,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -23962,6 +24244,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -24201,6 +24484,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -24213,6 +24497,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -24225,6 +24510,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -24237,6 +24523,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -24509,6 +24796,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -24521,6 +24809,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -24533,6 +24822,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -24545,6 +24835,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -24743,6 +25034,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -24755,6 +25047,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -24943,6 +25236,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -24955,6 +25249,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -24967,6 +25262,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -25172,6 +25468,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -25184,6 +25481,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -25330,6 +25628,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -25342,6 +25641,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -25354,6 +25654,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -25580,6 +25881,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -25592,6 +25894,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -25604,6 +25907,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -33584,6 +33888,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -33596,6 +33901,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -34103,6 +34409,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -34115,6 +34422,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -34127,6 +34435,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -34139,6 +34448,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -34549,6 +34859,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -34561,6 +34872,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -35100,6 +35412,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -35112,6 +35425,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -35124,6 +35438,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -35136,6 +35451,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -35148,6 +35464,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -35619,6 +35936,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -35631,6 +35949,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -35643,6 +35962,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -35655,6 +35975,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -35989,6 +36310,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -36001,6 +36323,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -36013,6 +36336,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -36025,6 +36349,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -36447,6 +36772,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -36459,6 +36785,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -36707,6 +37034,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -36719,6 +37047,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -36731,6 +37060,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -37057,6 +37387,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -37069,6 +37400,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -37081,6 +37413,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -37093,6 +37426,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -37433,6 +37767,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -37445,6 +37780,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -37457,6 +37793,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -37469,6 +37806,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -37819,6 +38157,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -37831,6 +38170,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -38086,6 +38426,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -38098,6 +38439,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -38379,6 +38721,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -38391,6 +38734,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -38665,6 +39009,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -38677,6 +39022,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -38689,6 +39035,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -38701,6 +39048,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -39072,6 +39420,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -39084,6 +39433,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -39403,6 +39753,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -39415,6 +39766,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -39427,6 +39779,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -39439,6 +39792,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -39774,6 +40128,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -39786,6 +40141,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -39987,6 +40343,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -39999,6 +40356,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -40357,6 +40715,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -40369,6 +40728,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -40381,6 +40741,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -40393,6 +40754,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -40405,6 +40767,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -40919,6 +41282,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -40931,6 +41295,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -40943,6 +41308,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -40955,6 +41321,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -41229,6 +41596,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -41241,6 +41609,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -41253,6 +41622,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -41691,6 +42061,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -41703,6 +42074,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -41715,6 +42087,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -41727,6 +42100,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -41739,6 +42113,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -41751,6 +42126,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -42244,6 +42620,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -42256,6 +42633,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -42268,6 +42646,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -42280,6 +42659,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -42292,6 +42672,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -42668,6 +43049,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -42680,6 +43062,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -42692,6 +43075,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -43016,6 +43400,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -43028,6 +43413,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -43040,6 +43426,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -43052,6 +43439,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -43064,6 +43452,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -43471,6 +43860,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -43483,6 +43873,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -43495,6 +43886,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -43507,6 +43899,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -43519,6 +43912,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -43941,6 +44335,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -43953,6 +44348,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -43965,6 +44361,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -43977,6 +44374,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -43989,6 +44387,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -44418,6 +44817,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -44430,6 +44830,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -44442,6 +44843,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -44454,6 +44856,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -44808,6 +45211,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -44820,6 +45224,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -44832,6 +45237,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -45415,6 +45821,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -45427,6 +45834,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -45439,6 +45847,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -45451,6 +45860,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -45463,6 +45873,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -45960,6 +46371,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -45972,6 +46384,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -46189,6 +46602,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -46201,6 +46615,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -46213,6 +46628,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -46839,6 +47255,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -46851,6 +47268,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -46863,6 +47281,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -46875,6 +47294,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -46887,6 +47307,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -46899,6 +47320,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -47478,6 +47900,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -47490,6 +47913,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -47502,6 +47926,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -47514,6 +47939,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -47838,6 +48264,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -47850,6 +48277,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -47862,6 +48290,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -47874,6 +48303,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -48279,6 +48709,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -48291,6 +48722,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -48303,6 +48735,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -48315,6 +48748,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -48327,6 +48761,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -48725,6 +49160,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -48737,6 +49173,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -48749,6 +49186,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -49045,6 +49483,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -49057,6 +49496,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -49069,6 +49509,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -49081,6 +49522,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -49395,6 +49837,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -49407,6 +49850,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -49419,6 +49863,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -49431,6 +49876,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -49771,6 +50217,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -49783,6 +50230,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -49795,6 +50243,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -49807,6 +50256,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -50163,6 +50613,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -50175,6 +50626,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -50187,6 +50639,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -50199,6 +50652,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -50211,6 +50665,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -50619,6 +51074,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -50631,6 +51087,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -50643,6 +51100,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -50655,6 +51113,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -51007,6 +51466,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -51019,6 +51479,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -51031,6 +51492,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -51043,6 +51505,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -51439,6 +51902,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -51451,6 +51915,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -51716,6 +52181,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -51728,6 +52194,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -51740,6 +52207,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -51752,6 +52220,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -52186,6 +52655,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -52198,6 +52668,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -52210,6 +52681,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -52822,6 +53294,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -52834,6 +53307,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -52846,6 +53320,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -52858,6 +53333,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -53294,6 +53770,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -53306,6 +53783,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -53318,6 +53796,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -53330,6 +53809,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -53673,6 +54153,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -53685,6 +54166,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -53697,6 +54179,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -53709,6 +54192,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -54015,6 +54499,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -54027,6 +54512,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -54039,6 +54525,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -54302,6 +54789,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -54486,6 +54974,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -54498,6 +54987,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -54510,6 +55000,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -54522,6 +55013,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -54833,6 +55325,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -54845,6 +55338,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -55048,6 +55542,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -55060,6 +55555,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -55372,6 +55868,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -55384,6 +55881,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -55396,6 +55894,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -55685,6 +56184,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -55697,6 +56197,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -56031,6 +56532,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -56043,6 +56545,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -56055,6 +56558,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -56342,6 +56846,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -56354,6 +56859,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -56366,6 +56872,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -56631,6 +57138,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -56643,6 +57151,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -56910,6 +57419,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -56922,6 +57432,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -56934,6 +57445,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -57250,6 +57762,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -57262,6 +57775,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -57274,6 +57788,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -57609,6 +58124,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -57621,6 +58137,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -57633,6 +58150,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -57953,6 +58471,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -57965,6 +58484,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -57977,6 +58497,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -58297,6 +58818,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -58309,6 +58831,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -58321,6 +58844,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -58584,6 +59108,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -58596,6 +59121,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -58865,6 +59391,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -58877,6 +59404,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -58889,6 +59417,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -58901,6 +59430,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -58913,6 +59443,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -59317,6 +59848,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -59329,6 +59861,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -59341,6 +59874,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -59682,6 +60216,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -59694,6 +60229,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -59706,6 +60242,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -59718,6 +60255,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -59730,6 +60268,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -60136,6 +60675,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -60148,6 +60688,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -60160,6 +60701,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -60172,6 +60714,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -60465,6 +61008,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -60477,6 +61021,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -60716,6 +61261,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -60728,6 +61274,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -60740,6 +61287,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -60752,6 +61300,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -60764,6 +61313,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -61160,6 +61710,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -61172,6 +61723,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -61433,6 +61985,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -61445,6 +61998,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -61457,6 +62011,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -61469,6 +62024,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -61481,6 +62037,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -61879,6 +62436,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -61891,6 +62449,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -61903,6 +62462,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -61915,6 +62475,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -62230,6 +62791,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -62242,6 +62804,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -62497,6 +63060,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -62509,6 +63073,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -62521,6 +63086,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -62848,6 +63414,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -62860,6 +63427,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -62872,6 +63440,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -62884,6 +63453,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -63266,6 +63836,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -63278,6 +63849,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -63290,6 +63862,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -63302,6 +63875,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -63610,6 +64184,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -63622,6 +64197,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -63876,6 +64452,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -63888,6 +64465,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -63900,6 +64478,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -64193,6 +64772,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -64205,6 +64785,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -64481,6 +65062,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -64493,6 +65075,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -64505,6 +65088,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -64795,6 +65379,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -64807,6 +65392,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -64819,6 +65405,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -74231,6 +74818,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -74243,6 +74831,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -74255,6 +74844,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -74267,6 +74857,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -74650,6 +75241,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -74662,6 +75254,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -74674,6 +75267,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -74686,6 +75280,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -75046,6 +75641,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -75058,6 +75654,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -75070,6 +75667,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -75082,6 +75680,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -75418,6 +76017,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -75430,6 +76030,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -75442,6 +76043,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -75454,6 +76056,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -75756,6 +76359,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -75768,6 +76372,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -76275,6 +76880,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -76287,6 +76893,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -76299,6 +76906,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -76311,6 +76919,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -76721,6 +77330,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -76733,6 +77343,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -76994,6 +77605,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -77006,6 +77618,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -77018,6 +77631,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -77030,6 +77644,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -77638,6 +78253,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -77650,6 +78266,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -77662,6 +78279,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -77674,6 +78292,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -77686,6 +78305,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -78161,6 +78781,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -78173,6 +78794,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -78185,6 +78807,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -78197,6 +78820,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -78619,6 +79243,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -78631,6 +79256,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -78879,6 +79505,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -78891,6 +79518,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -78903,6 +79531,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -79210,6 +79839,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -79222,6 +79852,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -79477,6 +80108,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -79489,6 +80121,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -79770,6 +80403,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -79782,6 +80416,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -80056,6 +80691,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -80068,6 +80704,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -80080,6 +80717,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -80092,6 +80730,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -80388,6 +81027,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -80400,6 +81040,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -80719,6 +81360,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -80731,6 +81373,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -80743,6 +81386,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -80755,6 +81399,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -81090,6 +81735,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -81102,6 +81748,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -81303,6 +81950,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -81315,6 +81963,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -81673,6 +82322,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -81685,6 +82335,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -81697,6 +82348,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -81709,6 +82361,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -81721,6 +82374,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -82235,6 +82889,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -82247,6 +82902,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -82259,6 +82915,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -82271,6 +82928,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -82505,6 +83163,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -82517,6 +83176,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -82529,6 +83189,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -82829,6 +83490,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -82841,6 +83503,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -82853,6 +83516,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -82865,6 +83529,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -82877,6 +83542,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -83397,6 +84063,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -83409,6 +84076,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -83421,6 +84089,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -83433,6 +84102,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -83445,6 +84115,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -83457,6 +84128,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -83944,6 +84616,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -83956,6 +84629,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -83968,6 +84642,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -84245,6 +84920,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -84257,6 +84933,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -84269,6 +84946,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -84281,6 +84959,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -84293,6 +84972,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -84714,6 +85394,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -84726,6 +85407,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -84738,6 +85420,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -84750,6 +85433,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -84762,6 +85446,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -85208,6 +85893,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -85220,6 +85906,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -85232,6 +85919,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -85244,6 +85932,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -85256,6 +85945,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -85695,6 +86385,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -85707,6 +86398,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -85719,6 +86411,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -85731,6 +86424,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -86142,6 +86836,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -86154,6 +86849,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -86166,6 +86862,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -86178,6 +86875,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -86190,6 +86888,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -86598,6 +87297,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -86610,6 +87310,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -86622,6 +87323,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -86634,6 +87336,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -86876,6 +87579,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -86888,6 +87592,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -86900,6 +87605,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -86912,6 +87618,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -87198,6 +87905,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -87210,6 +87918,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -87475,6 +88184,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -87487,6 +88197,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -87499,6 +88210,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -87511,6 +88223,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -87945,6 +88658,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -87957,6 +88671,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -87969,6 +88684,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -88316,6 +89032,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -88328,6 +89045,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -88340,6 +89058,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -88352,6 +89071,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -88945,6 +89665,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -88957,6 +89678,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -88969,6 +89691,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -88981,6 +89704,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -89432,6 +90156,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -89444,6 +90169,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -89456,6 +90182,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -89468,6 +90195,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -89774,6 +90502,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -89786,6 +90515,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -89798,6 +90528,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -90061,6 +90792,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -90245,6 +90977,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -90257,6 +90990,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -90269,6 +91003,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -90281,6 +91016,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -90592,6 +91328,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -90604,6 +91341,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -90762,6 +91500,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -90774,6 +91513,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -91086,6 +91826,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -91098,6 +91839,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -91110,6 +91852,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -91399,6 +92142,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -91411,6 +92155,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -91624,6 +92369,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -91636,6 +92382,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -91648,6 +92395,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -92020,6 +92768,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -92032,6 +92781,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -92044,6 +92794,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -92345,6 +93096,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -92357,6 +93109,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -92624,6 +93377,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -92636,6 +93390,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -92648,6 +93403,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -92964,6 +93720,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -92976,6 +93733,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -92988,6 +93746,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -93284,6 +94043,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -93296,6 +94056,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -93308,6 +94069,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -93643,6 +94405,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -93655,6 +94418,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -93667,6 +94431,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -94011,6 +94776,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -94023,6 +94789,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -94035,6 +94802,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -94298,6 +95066,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -94310,6 +95079,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -94579,6 +95349,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -94591,6 +95362,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -94603,6 +95375,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -94615,6 +95388,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -94627,6 +95401,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -95031,6 +95806,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -95043,6 +95819,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -95055,6 +95832,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -95325,6 +96103,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -95337,6 +96116,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -95349,6 +96129,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -95361,6 +96142,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -95733,6 +96515,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -95745,6 +96528,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -95757,6 +96541,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -95769,6 +96554,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -95781,6 +96567,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -96179,6 +96966,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -96191,6 +96979,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -96430,6 +97219,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -96442,6 +97232,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -96454,6 +97245,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -96466,6 +97258,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -96478,6 +97271,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -96874,6 +97668,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -96886,6 +97681,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -97098,6 +97894,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -97110,6 +97907,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -97122,6 +97920,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -97134,6 +97933,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -97484,6 +98284,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -97496,6 +98297,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -97508,6 +98310,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -97520,6 +98323,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -97532,6 +98336,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -97921,6 +98726,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -97933,6 +98739,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -97945,6 +98752,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -98528,6 +99336,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -98540,6 +99349,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -98552,6 +99362,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -98564,6 +99375,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -98576,6 +99388,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -99073,6 +99886,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -99085,6 +99899,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -99302,6 +100117,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -99314,6 +100130,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -99326,6 +100143,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -99671,6 +100489,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -99683,6 +100502,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -99695,6 +100515,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -99707,6 +100528,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -100288,6 +101110,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -100300,6 +101123,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -100312,6 +101136,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -100324,6 +101149,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -100336,6 +101162,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -100348,6 +101175,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -100951,6 +101779,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -100963,6 +101792,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -100975,6 +101805,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -100987,6 +101818,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -101392,6 +102224,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -101404,6 +102237,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -101416,6 +102250,7 @@ }, { "description": "Forbidden", + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -101428,6 +102263,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -101440,6 +102276,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -101838,6 +102675,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -101850,6 +102688,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -101862,6 +102701,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -102169,6 +103009,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -102181,6 +103022,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -102436,6 +103278,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -102448,6 +103291,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -102460,6 +103304,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -102787,6 +103632,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -102799,6 +103645,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -102811,6 +103658,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -102823,6 +103671,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -103130,6 +103979,7 @@ "errors": [ { "description": "Bad Request", + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -103142,6 +103992,7 @@ }, { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -103154,6 +104005,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -103166,6 +104018,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -103399,6 +104252,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -103411,6 +104265,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -103665,6 +104520,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -103677,6 +104533,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -103689,6 +104546,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -103982,6 +104840,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -103994,6 +104853,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -104206,6 +105066,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -104218,6 +105079,7 @@ }, { "description": "Not Found", + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -104230,6 +105092,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", @@ -104544,6 +105407,7 @@ "errors": [ { "description": "Unauthorized", + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -104556,6 +105420,7 @@ }, { "description": "Unprocessable Entity", + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -104568,6 +105433,7 @@ }, { "description": "Internal Server Error", + "name": "Internal Server Error", "statusCode": 500, "shape": { "type": "alias", diff --git a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-090e0b31-c453-4f41-8269-845a6e8a461f.json b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-090e0b31-c453-4f41-8269-845a6e8a461f.json index 88a18249f9..c46b2e4887 100644 --- a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-090e0b31-c453-4f41-8269-845a6e8a461f.json +++ b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-090e0b31-c453-4f41-8269-845a6e8a461f.json @@ -1,8 +1,17 @@ [ "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/query/clientToken", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/2", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/orderId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/currencyCode", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/amount", @@ -11,9 +20,20 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/customer", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/metadata", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/paymentMethod", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/clientToken", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/customerId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/orderId", @@ -23,9 +43,20 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/customer", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/order", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/paymentMethod", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/2", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/query/status", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/query/payment_method_type", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/query/processor", @@ -43,8 +74,14 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/query/klarna_email", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/query/limit", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/query/cursor", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/error/0/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/error/0/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/example/1", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/requestHeader/X-Idempotency-Key", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/request/object/property/orderId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/request/object/property/currencyCode", @@ -55,67 +92,183 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/request/object/property/customer", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/request/object/property/metadata", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/request/object/property/paymentMethod", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/error/1/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/error/1/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/example/2", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/path/id", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/requestHeader/X-Idempotency-Key", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/request/object/property/processor", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/1/404/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/1/404", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/2/409/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/2/409", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/3/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/3/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/2", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/3/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/3", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/4/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/4", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/path/id", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/requestHeader/X-Idempotency-Key", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/amount", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/final", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/order", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/metadata", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/error/1/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/error/1/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/example/2", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/path/id", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/requestHeader/X-Idempotency-Key", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/request/object/property/reason", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/example/1", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/path/id", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/requestHeader/X-Idempotency-Key", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/amount", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/orderId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/reason", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/error/1/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/error/1/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/example/2", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/path/id", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/request/object/property/resumeToken", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/error/0/400", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/example/1", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/path/id", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/requestHeader/X-Idempotency-Key", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/request/object/property/amount", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/1/404/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/1/404", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/2/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/2/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/2", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/3/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/3", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/path/id", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/example/1", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/path/paymentMethodToken", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object/property/customerId", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/2", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/query/customer_id", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/response", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/path/paymentMethodToken", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/path/paymentMethodToken", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment/response", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment/example/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/path/paymentId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/paymentId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/currencyCode", @@ -129,28 +282,62 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/metadata", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/paymentType", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/descriptor", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/response", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/example/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/path/id", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/query/connectionId", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/error/0/400", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/1", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/connectionId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/customerId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/orderId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/limit", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/offset", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/1/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/1/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/2", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/connectionId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/customerId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/orderId", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/type", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/value", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/response", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/0/400/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/0/400", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/1/422/error/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/1/422", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/0/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/0", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/1/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/1", "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/2/snippet/curl/0", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/2", + "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape/object/property/retailerCountryCode", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/AED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/AFN", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/ALL", @@ -333,6 +520,8 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/ZAR", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/ZMW", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/ZWL", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/DECLINED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/CANCELLED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/FAILED", @@ -341,21 +530,30 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/AUTHORIZED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/SETTLED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/PENDING", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/FIRST_PAYMENT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/ECOMMERCE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/SUBSCRIPTION", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/UNSCHEDULED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/MOTO", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/IN_STORE", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CREDIT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEBIT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/PREPAID", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CHARGE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEFERRED_DEBIT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/UNKNOWN", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mx", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mnc", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mcc", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ApayaCustomerTokenApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ApayaCustomerTokenApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape/object/property/network", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape/object/property/issuerCountryCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape/object/property/issuerName", @@ -367,13 +565,20 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape/object/property/productUsageType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape/object/property/productCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape/object/property/productName", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/3DS_AUTHENTICATION", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/USE_PRIMER_SDK", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/PAYMENT_METHOD_VOUCHER", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/PROCESSOR_3DS", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BlockingPaymentActionTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BlockingPaymentActionTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/PRIMARY_ACCOUNT_NUMBER", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/NETWORK_TOKEN", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/UNKNOWN", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardAccountNumberTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardAccountNumberTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum/shape/enum/value/AMEX", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum/shape/enum/value/DANKORT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum/shape/enum/value/DINERS_CLUB", @@ -390,21 +595,33 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum/shape/enum/value/UNIONPAY", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum/shape/enum/value/VISA", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum/shape/enum/value/OTHER", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardProductTypeEnum/shape/enum/value/CONSUMER", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardProductTypeEnum/shape/enum/value/BUSINESS", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardProductTypeEnum/shape/enum/value/GOVERNMENT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardProductTypeEnum/shape/enum/value/UNKNOWN", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardProductTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardProductTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/DOMESTIC_USE_ONLY", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/NONE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/UNKNOWN", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardRegionRestrictionEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardRegionRestrictionEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema/shape/object/property/lineItems", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema/shape/object/property/countryCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema/shape/object/property/retailerCountryCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema/shape/object/property/fees", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema/shape/object/property/shipping", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderFeesApiSchema/shape/object/property/amount", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderFeesApiSchema/shape/object/property/type", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderFeesApiSchema/shape/object/property/description", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderFeesApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderFeesApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderFeesApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/itemId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/name", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/description", @@ -415,6 +632,9 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/taxCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/productType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/productData", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/sku", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/brand", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/color", @@ -422,9 +642,18 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/manufacturerPartNumber", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/weight", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/weightUnit", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderShippingApiSchema/shape/object/property/amount", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderShippingApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderShippingApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderShippingApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object/property/", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object/property/PAYMENT_CARD", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/vaultOnSuccess", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/vaultOn3DS", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/descriptor", @@ -432,9 +661,18 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/orderedAllowedCardNetworks", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/options", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/authorizationType", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object/property/surcharge", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object/property/extraMerchantData", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object/property/networks", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/AMEX", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/DANKORT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/DINERS_CLUB", @@ -451,13 +689,27 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/UNIONPAY", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/VISA", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/OTHER", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object/property/surcharge", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object/property/amount", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionExtraMerchantDataApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionExtraMerchantDataApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/vaultOnSuccess", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/vaultOn3DS", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/descriptor", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/paymentType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/authorizationType", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/0", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/1", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/2", @@ -466,6 +718,8 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/5", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/6", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/7", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/descriptor", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodToken", @@ -475,6 +729,9 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodData", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/threeDSecureAuthentication", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/authorizationType", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/emailAddress", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/mobileNumber", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/firstName", @@ -483,6 +740,9 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/shippingAddress", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/taxId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/nationalDocumentId", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/emailAddress", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/mobileNumber", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/firstName", @@ -491,6 +751,9 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/shippingAddress", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/taxId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/nationalDocumentId", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/clientToken", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/clientTokenExpirationDate", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/orderId", @@ -502,6 +765,9 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/metadata", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/paymentMethod", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/warnings", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape/object/property/customerId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape/object/property/orderId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape/object/property/currencyCode", @@ -510,9 +776,15 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape/object/property/customer", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape/object/property/order", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape/object/property/paymentMethod", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/type", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/code", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/message", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWarningsApiResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWarningsApiResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWarningsApiResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum/shape/enum/value/AW", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum/shape/enum/value/AF", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum/shape/enum/value/AO", @@ -762,6 +1034,8 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum/shape/enum/value/ZA", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum/shape/enum/value/ZM", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum/shape/enum/value/ZW", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency/shape/enum/value/AED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency/shape/enum/value/AFN", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency/shape/enum/value/ALL", @@ -944,12 +1218,23 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency/shape/enum/value/ZAR", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency/shape/enum/value/ZMW", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency/shape/enum/value/ZWL", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/name", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/processorMerchantId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountCaptured", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountRefunded", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:GoCardlessMandateApiSchema/shape/object/property/gocardlessMandateId", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:GoCardlessMandateApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:GoCardlessMandateApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:GoCardlessMandateApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:IdealPayNlTokenApiSchema/shape/object/property/paymentMethodConfigId", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:IdealPayNlTokenApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:IdealPayNlTokenApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/title", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/firstName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/lastName", @@ -962,10 +1247,19 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/state", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/countryCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/postalCode", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/klarnaCustomerToken", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/sessionData", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaCustomerTokenApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/klarnaAuthorizationToken", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/sessionData", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaPaymentSessionApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/recurringDescription", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/billingAddress", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/shippingAddress", @@ -974,21 +1268,36 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/locale", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/orderLines", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/tokenDetails", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails/shape/object/property/type", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails/shape/object/property/brand", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails/shape/object/property/masked_number", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails/shape/object/property/expiry_date", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalBillingAgreementId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/externalPayerInfo", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/shippingAddress", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalStatus", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/externalPayerId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/email", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/firstName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/lastName", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalOrderId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/externalPayerInfo", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalStatus", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalOrderTokenApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalOrderTokenApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape/object/property/id", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape/object/property/date", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape/object/property/dateUpdated", @@ -1007,6 +1316,9 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape/object/property/statusReason", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape/object/property/transactions", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape/object/property/riskData", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/first6Digits", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/last4Digits", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/expirationMonth", @@ -1015,32 +1327,57 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/network", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/isNetworkTokenized", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/binData", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema/shape/object/property/type", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema/shape/object/property/declineType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema/shape/object/property/code", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema/shape/object/property/message", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskDataApiSchema/shape/object/property/fraudChecks", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskDataApiSchema/shape/object/property/cvvCheck", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskDataApiSchema/shape/object/property/avsCheck", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskDataApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskDataApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskDataApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudCheckApiSchema/shape/object/property/source", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudCheckApiSchema/shape/object/property/preAuthorizationResult", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudCheckApiSchema/shape/object/property/postAuthorizationResult", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudCheckApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudCheckApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudCheckApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/ACCEPT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/REFUSE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/FAILED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/THREE_DS", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudDecisionTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudDecisionTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CvvCheckApiSchema/shape/object/property/source", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CvvCheckApiSchema/shape/object/property/result", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CvvCheckApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CvvCheckApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CvvCheckApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsCheckApiSchema/shape/object/property/source", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsCheckApiSchema/shape/object/property/result", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsCheckApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsCheckApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsCheckApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsRiskAssessmentValues/shape/object/property/streetAddress", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsRiskAssessmentValues/shape/object/property/postalCode", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsRiskAssessmentValues/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsRiskAssessmentValues/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsRiskAssessmentValues", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/MATCHED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_MATCHED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_VERIFIED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_PROVIDED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_APPLICABLE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/SKIPPED", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYMENT_CARD", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYPAL_ORDER", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYPAL_BILLING_AGREEMENT", @@ -1054,12 +1391,20 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/APPLE_PAY", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/APPLE_PAY_ENCRYPTED_TOKEN", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/GOOGLE_PAY", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentListApiResponse/shape/object/property/data", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentListApiResponse/shape/object/property/nextCursor", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentListApiResponse/shape/object/property/prevCursor", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentListApiResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentListApiResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentListApiResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/name", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/description", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/clientToken", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequiredActionApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequiredActionApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequiredActionApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/id", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/date", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/dateUpdated", @@ -1069,33 +1414,57 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/currencyCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/amount", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/metadata", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape/object/property/processorMerchantId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape/object/property/name", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object/property/name", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object/property/processorMerchantId", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryProcessorApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryProcessorApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/RELOADABLE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NON_RELOADABLE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NOT_APPLICABLE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/UNKNOWN", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PrepaidReloadableEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PrepaidReloadableEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/FIRST_PAYMENT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/ECOMMERCE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/SUBSCRIPTION", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/UNSCHEDULED", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringTransactionTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringTransactionTypeEnum", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringPaymentTypeSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringPaymentTypeSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ProductTypeEnum/shape/enum/value/PHYSICAL", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ProductTypeEnum/shape/enum/value/DIGITAL", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ProductTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ProductTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/NOT_PERFORMED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/SKIPPED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_SUCCESS", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_FAILED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/CHALLENGE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/METHOD", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/0", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/1", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/responseCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonText", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/protocolVersion", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/challengeIssued", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/UNKNOWN", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REJECTED_BY_ISSUER", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/CARD_AUTHENTICATION_FAILED", @@ -1131,6 +1500,8 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/PROTOCOL_VERSION_NOT_SUPPORTED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/TRANSACTION_EXCLUDED_FROM_ATTEMPTS_PROCESSING", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REQUESTED_PROGRAM_NOT_SUPPORTED", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/GATEWAY_UNAVAILABLE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/DISABLED_BY_MERCHANT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/NOT_SUPPORTED_BY_ISSUER", @@ -1139,10 +1510,16 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/3DS_SERVER_ERROR", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_CONFIGURED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_PARTICIPATING", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TokenTypeEnum/shape/enum/value/MULTI_USE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TokenTypeEnum/shape/enum/value/SINGLE_USE", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TokenTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TokenTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:DeclineTypeEnum/shape/enum/value/SOFT_DECLINE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:DeclineTypeEnum/shape/enum/value/HARD_DECLINE", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:DeclineTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:DeclineTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ERROR", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/INVALID_CARD_NUMBER", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/EXPIRED_CARD", @@ -1156,6 +1533,8 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/WITHDRAWAL_LIMIT_EXCEEDED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ISSUER_TEMPORARILY_UNAVAILABLE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/AUTHENTICATION_REQUIRED", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/date", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/amount", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/currencyCode", @@ -1167,6 +1546,9 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatus", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatusReason", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/cardTokenType", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus/shape/enum/value/PENDING", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus/shape/enum/value/FAILED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus/shape/enum/value/AUTHORIZED", @@ -1175,11 +1557,17 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus/shape/enum/value/SETTLED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus/shape/enum/value/DECLINED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus/shape/enum/value/CANCELLED", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/APPLICATION_ERROR", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/GATEWAY_REJECTED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/ISSUER_DECLINED", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatusTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatusTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionTypeEnum/shape/enum/value/SALE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionTypeEnum/shape/enum/value/REFUND", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape/object/property/firstName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape/object/property/lastName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape/object/property/addressLine1", @@ -1188,6 +1576,9 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape/object/property/state", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape/object/property/countryCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape/object/property/postalCode", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape/object/property/firstName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape/object/property/lastName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape/object/property/addressLine1", @@ -1196,11 +1587,16 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape/object/property/state", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape/object/property/countryCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape/object/property/postalCode", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/0", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/1", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/2", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/3", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/4", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/createdAt", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/deletedAt", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/deleted", @@ -1212,14 +1608,28 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/customerId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/description", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/default", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape/object/property/isVerified", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape/object/property/data", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse/shape/object/property/id", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse/shape/object/property/connectionId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse/shape/object/property/connectionName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse/shape/object/property/balance", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyTransactionTypeEnum/shape/enum/value/REDEMPTION", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyTransactionTypeEnum/shape/enum/value/REFUND", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyTransactionTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyTransactionTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/date", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/id", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/connectionId", @@ -1229,10 +1639,16 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/connectionName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/type", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/value", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object/property/items", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object/property/total", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object/property/limit", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object/property/offset", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/AW", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/AF", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/AO", @@ -1482,11 +1898,16 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/ZA", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/ZM", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/ZW", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData/shape/object/property/network", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData/shape/object/property/issuerCountryCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData/shape/object/property/issuerName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData/shape/object/property/productUsageType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData/shape/object/property/accountFundingType", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/AW", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/AF", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/AO", @@ -1736,8 +2157,13 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/ZA", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/ZM", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/ZW", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrder/shape/object/property/id", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrder/shape/object/property/countryCode", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrder/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrder/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrder", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/AED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/AFN", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/ALL", @@ -1920,6 +2346,8 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/ZAR", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/ZMW", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/ZWL", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/DECLINED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/CANCELLED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/FAILED", @@ -1928,12 +2356,16 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/AUTHORIZED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/SETTLED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/PENDING", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/FIRST_PAYMENT", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/ECOMMERCE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/SUBSCRIPTION", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/UNSCHEDULED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/MOTO", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/IN_STORE", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape/object/property/paymentId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape/object/property/currencyCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape/object/property/processor", @@ -1946,11 +2378,20 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape/object/property/metadata", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape/object/property/paymentType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape/object/property/descriptor", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object/property/paymentMethodType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object/property/data", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object/property/threeDSecureAuthentication", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethod/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethod", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethodData/shape/object/property/binData", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethodData/shape/object/property/first6Digits", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethodData/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethodData/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethodData", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/APAYA", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/ADYEN", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/AFTERPAY", @@ -2020,13 +2461,22 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/TAXJAR", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/STITCH", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/SIGNIFYD", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessor/shape/object/property/name", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessor/shape/object/property/merchantId", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessor/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessor/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessor", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonType/shape/enum/value/APPLICATION_ERROR", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonType/shape/enum/value/GATEWAY_REJECTED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonType/shape/enum/value/ISSUER_DECLINED", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonType/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonDeclineType/shape/enum/value/SOFT_DECLINE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonDeclineType/shape/enum/value/HARD_DECLINE", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonDeclineType/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonDeclineType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/ERROR", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/INVALID_CARD_NUMBER", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/EXPIRED_CARD", @@ -2040,16 +2490,23 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/WITHDRAWAL_LIMIT_EXCEEDED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/ISSUER_TEMPORARILY_UNAVAILABLE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/AUTHENTICATION_REQUIRED", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason/shape/object/property/type", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason/shape/object/property/declineType", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason/shape/object/property/code", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason/shape/object/property/message", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/NOT_PERFORMED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/SKIPPED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/AUTH_SUCCESS", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/AUTH_FAILED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/CHALLENGE", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/METHOD", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/transStatus", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/transStatusReason", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/responseCode", @@ -2058,496 +2515,39 @@ "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/reasonCode", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/reasonText", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/eci", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject/shape/object/property/errorId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject/shape/object/property/description", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject/shape/object/property/diagnosticsId", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject/shape/object/property/validationErrors", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_ErrorResponse/shape/object/property/error", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_ErrorResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_ErrorResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_ErrorResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_four_ErrorResponse/shape/object/property/error", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_four_ErrorResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_four_ErrorResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_four_ErrorResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_nine_ErrorResponse/shape/object/property/error", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_nine_ErrorResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_nine_ErrorResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_nine_ErrorResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape/object/property/error", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape/object", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_twenty_two_ErrorResponse", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AuthorizationTypeEnum/shape/enum/value/ESTIMATED", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AuthorizationTypeEnum/shape/enum/value/FINAL", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AuthorizationTypeEnum/shape", + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AuthorizationTypeEnum", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardTokenTypeEnum/shape/enum/value/CARD_PAN", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardTokenTypeEnum/shape/enum/value/NETWORK_TOKEN", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardTokenTypeEnum/shape/enum/value/PROCESSOR_TOKEN", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/error/0/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/error/1/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/1/404/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/2/409/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/3/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/error/1/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/error/1/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/1/404/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/2/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/1/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/response", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/0/400/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/1/422/error/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionExtraMerchantDataApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringPaymentTypeSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderFeesApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderShippingApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWarningsApiResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:GoCardlessMandateApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskDataApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudCheckApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CvvCheckApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsCheckApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsRiskAssessmentValues/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentListApiResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequiredActionApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrder/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethodData/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessor/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_ErrorResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_four_ErrorResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_nine_ErrorResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape/object", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BlockingPaymentActionTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardAccountNumberTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardProductTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardRegionRestrictionEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionExtraMerchantDataApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudDecisionTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PrepaidReloadableEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringTransactionTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringPaymentTypeSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ProductTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TokenTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:DeclineTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatusTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyTransactionTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonType/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonDeclineType/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AuthorizationTypeEnum/shape", "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardTokenTypeEnum/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/error/0/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/error/1/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/1/404", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/2/409", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/error/3/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/3", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/example/4", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/error/1/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/error/1/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/1/404", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/error/2/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/example/3", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/1/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/0/400", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/1/422", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/0", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/1", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/2", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AccountFundingTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ApayaCustomerTokenApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BlockingPaymentActionTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardAccountNumberTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardNetworkEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardProductTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardRegionRestrictionEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderFeesApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderShippingApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWarningsApiResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CountryCodeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:Currency", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:GoCardlessMandateApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:IdealPayNlTokenApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalOrderTokenApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskDataApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudCheckApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudDecisionTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CvvCheckApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsCheckApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsRiskAssessmentValues/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskAssessmentStatusEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentMethodTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentListApiResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequiredActionApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryProcessorApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PrepaidReloadableEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RecurringTransactionTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ProductTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TokenTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:DeclineTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionDeclineReasonV2Enum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatus", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentStatusTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyTransactionTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrderCountryCode", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrder/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentCurrencyCode", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentStatus", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentPaymentType", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethod/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethodData/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessorName", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessor/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonType", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonDeclineType", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReasonCode", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_ErrorResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_four_ErrorResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_nine_ErrorResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AuthorizationTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardTokenTypeEnum", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ApayaCustomerTokenApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:BinDataApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderDetailsApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderFeesApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderLineItemsProductDataApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OrderShippingApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CheckoutCustomerDetailsApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CustomerDetailsApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWithTokenApiResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionApiResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ClientSessionWarningsApiResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentResponseProcessorApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:GoCardlessMandateApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:IdealPayNlTokenApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaAddressApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaCustomerTokenApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaPaymentSessionApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaSessionDetailsApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:KlarnaTokenDetails", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalBillingAgreementApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalExternalPayerInfoApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PayPalOrderTokenApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentApiResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentCardTokenApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:StatusReasonApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:RiskDataApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:FraudCheckApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CvvCheckApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsCheckApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AvsRiskAssessmentValues", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentListApiResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentRequiredActionApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentSummaryProcessorApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ThreeDSecureAuthenticationApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:TransactionOverviewApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:OptionalAddressApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:AddressApiSchema", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:MerchantPaymentMethodTokenApiResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiBalanceResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:LoyaltyApiTransactionsListResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsBinData", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsOrder", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPayment", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethod", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsPaymentMethodData", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsProcessor", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsStatusReason", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:ErrorObject", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_ErrorResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_four_ErrorResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_nine_ErrorResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:four_hundred_twenty_two_ErrorResponse", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.retrieveClientSideToken", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.createClientSideToken", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_clientSessionApi.updateClientSideToken", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.listPayments", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.createPayment", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.authorizePayment", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.capturePayment", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.cancelPayment", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.refundPayment", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.resumePayment", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.adjustAuthorization", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentsApi.getPaymentById", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_observabilityApiBeta.external_payment_update", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions", - "090e0b31-c453-4f41-8269-845a6e8a461f/endpoint/subpackage_loyaltyApi.post_loyalty_transaction" + "090e0b31-c453-4f41-8269-845a6e8a461f/type-definition/type_:CardTokenTypeEnum" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-0d20b529-65ad-4f2b-99a5-562a73e0b3c9.json b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-0d20b529-65ad-4f2b-99a5-562a73e0b3c9.json index f9880bc8b0..1d0c83afae 100644 --- a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-0d20b529-65ad-4f2b-99a5-562a73e0b3c9.json +++ b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-0d20b529-65ad-4f2b-99a5-562a73e0b3c9.json @@ -1,8 +1,17 @@ [ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/query/clientToken", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/2", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/orderId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/currencyCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/amount", @@ -11,9 +20,20 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/customer", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/metadata", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/paymentMethod", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/clientToken", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/customerId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/orderId", @@ -23,9 +43,20 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/customer", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/order", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/paymentMethod", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/2", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/query/status", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/query/payment_method_type", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/query/processor", @@ -43,8 +74,14 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/query/klarna_email", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/query/limit", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/query/cursor", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/error/0/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/error/0/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/example/1", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/requestHeader/X-Idempotency-Key", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/request/object/property/orderId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/request/object/property/currencyCode", @@ -55,71 +92,199 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/request/object/property/customer", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/request/object/property/metadata", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/request/object/property/paymentMethod", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/error/1/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/error/1/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/example/2", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/path/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/requestHeader/X-Idempotency-Key", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/request/object/property/processor", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/1/404/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/1/404", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/2/409/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/2/409", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/3/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/3/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/2", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/3/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/3", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/4/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/4", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/path/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/requestHeader/X-Idempotency-Key", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/amount", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/final", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/order", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/metadata", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/1/409/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/1/409", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/2/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/2/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/2", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/3/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/3", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/path/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/requestHeader/X-Idempotency-Key", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/request/object/property/reason", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/error/1/409/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/error/1/409", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/example/2", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/path/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/requestHeader/X-Idempotency-Key", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/amount", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/orderId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/reason", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/1/409/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/1/409", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/2/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/2/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/2", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/3/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/3", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/path/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/request/object/property/resumeToken", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/error/0/400", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/example/1", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/path/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/requestHeader/X-Idempotency-Key", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/request/object/property/amount", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/1/404/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/1/404", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/2/409/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/2/409", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/3/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/3/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/2", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/3/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/3", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/4/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/4", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/path/id", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/example/1", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/path/paymentMethodToken", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object/property/customerId", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/2", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/query/customer_id", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/response", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/path/paymentMethodToken", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/path/paymentMethodToken", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment/response", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment/example/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/path/paymentId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/paymentId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/currencyCode", @@ -133,28 +298,62 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/metadata", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/paymentType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object/property/descriptor", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/response", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/example/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/path/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/query/connectionId", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/error/0/400", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/1", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/connectionId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/customerId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/orderId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/limit", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/query/offset", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/1/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/1/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/2", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/connectionId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/customerId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/orderId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/type", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object/property/value", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/response", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/0/400/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/0/400", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/1/422/error/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/1/422", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/0/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/1/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/2/snippet/curl/0", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/2", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape/object/property/retailerCountryCode", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/AED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/AFN", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/ALL", @@ -337,6 +536,8 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/ZAR", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/ZMW", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape/enum/value/ZWL", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/DECLINED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/CANCELLED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/FAILED", @@ -345,21 +546,30 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/AUTHORIZED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/SETTLED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape/enum/value/PENDING", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/FIRST_PAYMENT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/ECOMMERCE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/SUBSCRIPTION", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/UNSCHEDULED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/MOTO", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape/enum/value/IN_STORE", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CREDIT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEBIT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/PREPAID", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CHARGE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEFERRED_DEBIT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/UNKNOWN", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mx", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mnc", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mcc", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ApayaCustomerTokenApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ApayaCustomerTokenApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape/object/property/network", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape/object/property/issuerCountryCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape/object/property/issuerName", @@ -371,13 +581,20 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape/object/property/productUsageType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape/object/property/productCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape/object/property/productName", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/3DS_AUTHENTICATION", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/USE_PRIMER_SDK", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/PAYMENT_METHOD_VOUCHER", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/PROCESSOR_3DS", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BlockingPaymentActionTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BlockingPaymentActionTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/PRIMARY_ACCOUNT_NUMBER", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/NETWORK_TOKEN", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/UNKNOWN", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardAccountNumberTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardAccountNumberTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum/shape/enum/value/AMEX", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum/shape/enum/value/DANKORT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum/shape/enum/value/DINERS_CLUB", @@ -394,21 +611,33 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum/shape/enum/value/UNIONPAY", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum/shape/enum/value/VISA", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum/shape/enum/value/OTHER", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardProductTypeEnum/shape/enum/value/CONSUMER", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardProductTypeEnum/shape/enum/value/BUSINESS", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardProductTypeEnum/shape/enum/value/GOVERNMENT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardProductTypeEnum/shape/enum/value/UNKNOWN", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardProductTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardProductTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/DOMESTIC_USE_ONLY", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/NONE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/UNKNOWN", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardRegionRestrictionEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardRegionRestrictionEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema/shape/object/property/lineItems", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema/shape/object/property/countryCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema/shape/object/property/retailerCountryCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema/shape/object/property/fees", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema/shape/object/property/shipping", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderFeesApiSchema/shape/object/property/amount", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderFeesApiSchema/shape/object/property/type", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderFeesApiSchema/shape/object/property/description", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderFeesApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderFeesApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderFeesApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/itemId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/name", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/description", @@ -419,6 +648,9 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/taxCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/productType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/productData", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/sku", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/brand", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/color", @@ -426,9 +658,18 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/manufacturerPartNumber", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/weight", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object/property/weightUnit", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderShippingApiSchema/shape/object/property/amount", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderShippingApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderShippingApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderShippingApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object/property/", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object/property/PAYMENT_CARD", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/vaultOnSuccess", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/vaultOn3DS", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/descriptor", @@ -436,8 +677,17 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/orderedAllowedCardNetworks", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/options", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/authorizationType", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object/property/surcharge", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object/property/networks", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/AMEX", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/DANKORT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/DINERS_CLUB", @@ -454,13 +704,25 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/UNIONPAY", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/VISA", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/OTHER", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object/property/surcharge", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object/property/amount", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/vaultOnSuccess", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/vaultOnSuccess", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/vaultOn3DS", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/descriptor", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/paymentType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/authorizationType", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/2", @@ -469,6 +731,8 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/5", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/6", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/7", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/descriptor", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodToken", @@ -478,6 +742,9 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodData", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/threeDSecureAuthentication", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/authorizationType", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/emailAddress", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/mobileNumber", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/firstName", @@ -486,6 +753,9 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/shippingAddress", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/taxId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/nationalDocumentId", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/emailAddress", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/mobileNumber", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/firstName", @@ -494,6 +764,9 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/shippingAddress", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/taxId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/nationalDocumentId", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/clientToken", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/clientTokenExpirationDate", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/orderId", @@ -505,6 +778,9 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/metadata", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/paymentMethod", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/warnings", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape/object/property/customerId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape/object/property/orderId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape/object/property/currencyCode", @@ -513,9 +789,15 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape/object/property/customer", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape/object/property/order", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape/object/property/paymentMethod", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/type", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/code", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/message", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWarningsApiResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWarningsApiResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWarningsApiResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum/shape/enum/value/AW", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum/shape/enum/value/AF", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum/shape/enum/value/AO", @@ -765,6 +1047,8 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum/shape/enum/value/ZA", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum/shape/enum/value/ZM", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum/shape/enum/value/ZW", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency/shape/enum/value/AED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency/shape/enum/value/AFN", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency/shape/enum/value/ALL", @@ -947,12 +1231,23 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency/shape/enum/value/ZAR", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency/shape/enum/value/ZMW", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency/shape/enum/value/ZWL", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/name", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/processorMerchantId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountCaptured", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountRefunded", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:GoCardlessMandateApiSchema/shape/object/property/gocardlessMandateId", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:GoCardlessMandateApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:GoCardlessMandateApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:GoCardlessMandateApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:IdealPayNlTokenApiSchema/shape/object/property/paymentMethodConfigId", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:IdealPayNlTokenApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:IdealPayNlTokenApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/title", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/firstName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/lastName", @@ -965,10 +1260,19 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/state", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/countryCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/postalCode", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/klarnaCustomerToken", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/sessionData", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaCustomerTokenApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/klarnaAuthorizationToken", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/sessionData", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaPaymentSessionApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/recurringDescription", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/billingAddress", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/shippingAddress", @@ -977,21 +1281,36 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/locale", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/orderLines", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/tokenDetails", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails/shape/object/property/type", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails/shape/object/property/brand", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails/shape/object/property/masked_number", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails/shape/object/property/expiry_date", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalBillingAgreementId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/externalPayerInfo", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/shippingAddress", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalStatus", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/externalPayerId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/email", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/firstName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/lastName", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalOrderId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/externalPayerInfo", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalStatus", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalOrderTokenApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalOrderTokenApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape/object/property/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape/object/property/date", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape/object/property/dateUpdated", @@ -1010,6 +1329,9 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape/object/property/statusReason", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape/object/property/transactions", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape/object/property/riskData", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/first6Digits", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/last4Digits", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/expirationMonth", @@ -1018,32 +1340,57 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/network", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/isNetworkTokenized", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/binData", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema/shape/object/property/type", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema/shape/object/property/declineType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema/shape/object/property/code", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema/shape/object/property/message", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskDataApiSchema/shape/object/property/fraudChecks", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskDataApiSchema/shape/object/property/cvvCheck", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskDataApiSchema/shape/object/property/avsCheck", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskDataApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskDataApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskDataApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudCheckApiSchema/shape/object/property/source", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudCheckApiSchema/shape/object/property/preAuthorizationResult", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudCheckApiSchema/shape/object/property/postAuthorizationResult", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudCheckApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudCheckApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudCheckApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/ACCEPT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/REFUSE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/FAILED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/THREE_DS", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudDecisionTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudDecisionTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CvvCheckApiSchema/shape/object/property/source", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CvvCheckApiSchema/shape/object/property/result", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CvvCheckApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CvvCheckApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CvvCheckApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsCheckApiSchema/shape/object/property/source", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsCheckApiSchema/shape/object/property/result", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsCheckApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsCheckApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsCheckApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsRiskAssessmentValues/shape/object/property/streetAddress", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsRiskAssessmentValues/shape/object/property/postalCode", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsRiskAssessmentValues/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsRiskAssessmentValues/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsRiskAssessmentValues", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/MATCHED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_MATCHED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_VERIFIED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_PROVIDED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_APPLICABLE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/SKIPPED", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYMENT_CARD", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/GOOGLE_PAY", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/APPLE_PAY", @@ -1142,12 +1489,20 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/SIPS_CPAYCONFORAMA", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/MONEXT_CETELEM", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/MONEXT_CPAY", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentListApiResponse/shape/object/property/data", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentListApiResponse/shape/object/property/nextCursor", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentListApiResponse/shape/object/property/prevCursor", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentListApiResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentListApiResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentListApiResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/name", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/description", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/clientToken", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequiredActionApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequiredActionApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequiredActionApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/date", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/dateUpdated", @@ -1157,33 +1512,57 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/currencyCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/amount", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/metadata", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape/object/property/processorMerchantId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape/object/property/name", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object/property/name", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object/property/processorMerchantId", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryProcessorApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryProcessorApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/RELOADABLE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NON_RELOADABLE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NOT_APPLICABLE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/UNKNOWN", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PrepaidReloadableEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PrepaidReloadableEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/FIRST_PAYMENT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/ECOMMERCE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/SUBSCRIPTION", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/UNSCHEDULED", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringTransactionTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringTransactionTypeEnum", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringPaymentTypeSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringPaymentTypeSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ProductTypeEnum/shape/enum/value/PHYSICAL", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ProductTypeEnum/shape/enum/value/DIGITAL", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ProductTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ProductTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/NOT_PERFORMED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/SKIPPED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_SUCCESS", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_FAILED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/CHALLENGE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/METHOD", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/1", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/responseCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonText", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/protocolVersion", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/challengeIssued", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/UNKNOWN", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REJECTED_BY_ISSUER", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/CARD_AUTHENTICATION_FAILED", @@ -1219,6 +1598,8 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/PROTOCOL_VERSION_NOT_SUPPORTED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/TRANSACTION_EXCLUDED_FROM_ATTEMPTS_PROCESSING", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REQUESTED_PROGRAM_NOT_SUPPORTED", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/GATEWAY_UNAVAILABLE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/DISABLED_BY_MERCHANT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/NOT_SUPPORTED_BY_ISSUER", @@ -1227,10 +1608,16 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/3DS_SERVER_ERROR", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_CONFIGURED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_PARTICIPATING", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TokenTypeEnum/shape/enum/value/MULTI_USE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TokenTypeEnum/shape/enum/value/SINGLE_USE", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TokenTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TokenTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:DeclineTypeEnum/shape/enum/value/SOFT_DECLINE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:DeclineTypeEnum/shape/enum/value/HARD_DECLINE", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:DeclineTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:DeclineTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ERROR", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/INVALID_CARD_NUMBER", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/EXPIRED_CARD", @@ -1244,6 +1631,8 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/WITHDRAWAL_LIMIT_EXCEEDED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ISSUER_TEMPORARILY_UNAVAILABLE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/AUTHENTICATION_REQUIRED", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/date", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/amount", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/currencyCode", @@ -1255,6 +1644,9 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatus", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatusReason", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/cardTokenType", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus/shape/enum/value/PENDING", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus/shape/enum/value/FAILED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus/shape/enum/value/AUTHORIZED", @@ -1263,11 +1655,17 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus/shape/enum/value/SETTLED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus/shape/enum/value/DECLINED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus/shape/enum/value/CANCELLED", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/APPLICATION_ERROR", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/GATEWAY_REJECTED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/ISSUER_DECLINED", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatusTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatusTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionTypeEnum/shape/enum/value/SALE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionTypeEnum/shape/enum/value/REFUND", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/firstName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/lastName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/addressLine1", @@ -1276,6 +1674,9 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/state", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/countryCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/postalCode", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape/object/property/firstName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape/object/property/lastName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape/object/property/addressLine1", @@ -1284,11 +1685,16 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape/object/property/state", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape/object/property/countryCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape/object/property/postalCode", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/0", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/1", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/2", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/3", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/4", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/createdAt", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/deletedAt", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/deleted", @@ -1300,14 +1706,28 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/customerId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/description", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/default", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape/object/property/isVerified", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape/object/property/data", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse/shape/object/property/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse/shape/object/property/connectionId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse/shape/object/property/connectionName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse/shape/object/property/balance", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyTransactionTypeEnum/shape/enum/value/REDEMPTION", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyTransactionTypeEnum/shape/enum/value/REFUND", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyTransactionTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyTransactionTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/date", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/connectionId", @@ -1317,10 +1737,16 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/connectionName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/type", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape/object/property/value", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object/property/items", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object/property/total", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object/property/limit", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object/property/offset", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/AW", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/AF", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/AO", @@ -1570,11 +1996,16 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/ZA", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/ZM", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape/enum/value/ZW", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData/shape/object/property/network", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData/shape/object/property/issuerCountryCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData/shape/object/property/issuerName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData/shape/object/property/productUsageType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData/shape/object/property/accountFundingType", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/AW", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/AF", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/AO", @@ -1824,8 +2255,13 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/ZA", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/ZM", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode/shape/enum/value/ZW", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrder/shape/object/property/id", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrder/shape/object/property/countryCode", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrder/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrder/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrder", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/AED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/AFN", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/ALL", @@ -2008,6 +2444,8 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/ZAR", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/ZMW", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape/enum/value/ZWL", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/DECLINED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/CANCELLED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/FAILED", @@ -2016,12 +2454,16 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/AUTHORIZED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/SETTLED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus/shape/enum/value/PENDING", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/FIRST_PAYMENT", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/ECOMMERCE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/SUBSCRIPTION", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/UNSCHEDULED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/MOTO", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape/enum/value/IN_STORE", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape/object/property/paymentId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape/object/property/currencyCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape/object/property/processor", @@ -2034,11 +2476,20 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape/object/property/metadata", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape/object/property/paymentType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape/object/property/descriptor", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object/property/paymentMethodType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object/property/data", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object/property/threeDSecureAuthentication", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethod/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethod", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethodData/shape/object/property/binData", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethodData/shape/object/property/first6Digits", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethodData/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethodData/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethodData", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/APAYA", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/ADYEN", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/AFTERPAY", @@ -2108,13 +2559,22 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/TAXJAR", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/STITCH", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName/shape/enum/value/SIGNIFYD", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessor/shape/object/property/name", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessor/shape/object/property/merchantId", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessor/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessor/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessor", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonType/shape/enum/value/APPLICATION_ERROR", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonType/shape/enum/value/GATEWAY_REJECTED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonType/shape/enum/value/ISSUER_DECLINED", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonType/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonDeclineType/shape/enum/value/SOFT_DECLINE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonDeclineType/shape/enum/value/HARD_DECLINE", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonDeclineType/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonDeclineType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/ERROR", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/INVALID_CARD_NUMBER", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/EXPIRED_CARD", @@ -2128,16 +2588,23 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/WITHDRAWAL_LIMIT_EXCEEDED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/ISSUER_TEMPORARILY_UNAVAILABLE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode/shape/enum/value/AUTHENTICATION_REQUIRED", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason/shape/object/property/type", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason/shape/object/property/declineType", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason/shape/object/property/code", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason/shape/object/property/message", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/NOT_PERFORMED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/SKIPPED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/AUTH_SUCCESS", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/AUTH_FAILED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/CHALLENGE", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape/enum/value/METHOD", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/transStatus", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/transStatusReason", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/responseCode", @@ -2146,511 +2613,44 @@ "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/reasonCode", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/reasonText", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object/property/eci", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject/shape/object/property/errorId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject/shape/object/property/description", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject/shape/object/property/diagnosticsId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject/shape/object/property/validationErrors", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_ErrorResponse/shape/object/property/error", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_ErrorResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_ErrorResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_ErrorResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_four_ErrorResponse/shape/object/property/error", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_four_ErrorResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_four_ErrorResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_four_ErrorResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponseError/shape/object/property/paymentId", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponseError/shape/object/property/status", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponseError/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponseError/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponseError", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponse/shape/object/property/error", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape/object/property/error", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape/object", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_twenty_two_ErrorResponse", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AuthorizationTypeEnum/shape/enum/value/ESTIMATED", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AuthorizationTypeEnum/shape/enum/value/FINAL", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AuthorizationTypeEnum/shape", + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AuthorizationTypeEnum", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardTokenTypeEnum/shape/enum/value/CARD_PAN", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardTokenTypeEnum/shape/enum/value/NETWORK_TOKEN", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardTokenTypeEnum/shape/enum/value/PROCESSOR_TOKEN", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/error/0/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/error/1/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/1/404/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/2/409/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/3/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/1/409/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/2/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/error/1/409/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/1/409/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/2/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/1/404/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/2/409/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/3/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/1/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/response", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/0/400/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/1/422/error/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringPaymentTypeSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderFeesApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderShippingApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWarningsApiResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:GoCardlessMandateApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskDataApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudCheckApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CvvCheckApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsCheckApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsRiskAssessmentValues/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentListApiResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequiredActionApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrder/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethod/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethodData/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessor/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_ErrorResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_four_ErrorResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponseError/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape/object", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BlockingPaymentActionTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardAccountNumberTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardProductTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardRegionRestrictionEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudDecisionTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PrepaidReloadableEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringTransactionTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringPaymentTypeSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ProductTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TokenTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:DeclineTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatusTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyTransactionTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonType/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonDeclineType/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AuthorizationTypeEnum/shape", "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardTokenTypeEnum/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/error/0/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/error/1/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/1/404", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/2/409", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/error/3/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/3", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/example/4", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/1/409", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/error/2/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/example/3", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/error/1/409", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/1/409", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/error/2/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/example/3", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/1/404", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/2/409", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/error/3/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/3", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/example/4", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/error/1/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/0/400", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/error/1/422", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/0", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/1", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/example/2", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction/request", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentCurrencyCode", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentStatus", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_observabilityApiBeta:PaymentsInsightsPatchedPaymentPaymentType", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AccountFundingTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ApayaCustomerTokenApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BlockingPaymentActionTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardAccountNumberTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardNetworkEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardProductTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardRegionRestrictionEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderFeesApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderShippingApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWarningsApiResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CountryCodeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:Currency", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:GoCardlessMandateApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:IdealPayNlTokenApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalOrderTokenApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskDataApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudCheckApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudDecisionTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CvvCheckApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsCheckApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsRiskAssessmentValues/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskAssessmentStatusEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentMethodTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentListApiResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequiredActionApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryProcessorApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PrepaidReloadableEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RecurringTransactionTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ProductTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TokenTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:DeclineTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionDeclineReasonV2Enum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatus", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentStatusTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyTransactionTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinDataIssuerCountryCode", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrderCountryCode", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrder/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentCurrencyCode", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentStatus", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentPaymentType", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethod/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethodData/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessorName", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessor/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonType", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonDeclineType", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReasonCode", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthenticationResponseCode", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_ErrorResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_four_ErrorResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponseError/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AuthorizationTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardTokenTypeEnum", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_paymentsApi:PaymentCaptureApiRequestOrder", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ApayaCustomerTokenApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:BinDataApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderDetailsApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderFeesApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderLineItemsProductDataApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OrderShippingApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CheckoutCustomerDetailsApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CustomerDetailsApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWithTokenApiResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionApiResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ClientSessionWarningsApiResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentResponseProcessorApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:GoCardlessMandateApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:IdealPayNlTokenApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaAddressApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaCustomerTokenApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaPaymentSessionApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaSessionDetailsApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:KlarnaTokenDetails", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalBillingAgreementApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalExternalPayerInfoApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PayPalOrderTokenApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentApiResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentCardTokenApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:StatusReasonApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:RiskDataApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:FraudCheckApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CvvCheckApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsCheckApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AvsRiskAssessmentValues", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentListApiResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentRequiredActionApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentAuthorizationRequestProcessorApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentSummaryProcessorApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ThreeDSecureAuthenticationApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:TransactionOverviewApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:OptionalAddressApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:AddressApiSchema", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:MerchantPaymentMethodTokenApiResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiBalanceResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:LoyaltyApiTransactionsListResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsBinData", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsOrder", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPayment", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethod", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsPaymentMethodData", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsProcessor", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsStatusReason", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:PaymentsInsightsThreeDSecureAuthentication", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:ErrorObject", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_ErrorResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_four_ErrorResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponseError", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_nine_ErrorResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:four_hundred_twenty_two_ErrorResponse", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.retrieveClientSideToken", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.createClientSideToken", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_clientSessionApi.updateClientSideToken", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.listPayments", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.createPayment", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.authorizePayment", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.capturePayment", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.cancelPayment", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.refundPayment", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.resumePayment", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.adjustAuthorization", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentsApi.getPaymentById", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_observabilityApiBeta.external_payment_update", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.get_loyalty_customer_transactions", - "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/endpoint/subpackage_loyaltyApi.post_loyalty_transaction" + "0d20b529-65ad-4f2b-99a5-562a73e0b3c9/type-definition/type_:CardTokenTypeEnum" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-3e1141df-b4bc-4dab-9542-53cf91851645.json b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-3e1141df-b4bc-4dab-9542-53cf91851645.json index 03bb896b19..5b4a3543ce 100644 --- a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-3e1141df-b4bc-4dab-9542-53cf91851645.json +++ b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-3e1141df-b4bc-4dab-9542-53cf91851645.json @@ -5,14 +5,22 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/request/object/property/version", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/request/object/property/signedAt", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/request/object/property/payment", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/request/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/request", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/example/0/snippet/curl/0", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/example/0", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request/object/property/eventType", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request/object/property/date", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request/object/property/notificationConfig", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request/object/property/version", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request/object/property/signedAt", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request/object/property/payment", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/example/0/snippet/curl/0", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/example/0", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request/object/property/eventType", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request/object/property/processorId", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request/object/property/processorDisputeId", @@ -20,9 +28,16 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request/object/property/transactionId", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request/object/property/orderId", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request/object/property/primerAccountId", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request", "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/example/0/snippet/curl/0", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/example/0", + "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadNotificationConfig/shape/object/property/id", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadNotificationConfig/shape/object/property/description", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadNotificationConfig/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadNotificationConfig/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadNotificationConfig", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape/object/property/id", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape/object/property/date", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape/object/property/status", @@ -35,8 +50,14 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape/object/property/processor", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape/object/property/statusReason", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape/object/property/transactions", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadNotificationConfig/shape/object/property/id", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadNotificationConfig/shape/object/property/description", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadNotificationConfig/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadNotificationConfig/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadNotificationConfig", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape/object/property/id", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape/object/property/date", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape/object/property/status", @@ -49,15 +70,23 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape/object/property/processor", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape/object/property/statusReason", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape/object/property/transactions", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CREDIT", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEBIT", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/PREPAID", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CHARGE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEFERRED_DEBIT", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/UNKNOWN", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mx", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mnc", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mcc", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ApayaCustomerTokenApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ApayaCustomerTokenApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape/object/property/network", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape/object/property/issuerCountryCode", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape/object/property/issuerName", @@ -69,16 +98,27 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape/object/property/productUsageType", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape/object/property/productCode", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape/object/property/productName", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/PRIMARY_ACCOUNT_NUMBER", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/NETWORK_TOKEN", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/UNKNOWN", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardAccountNumberTypeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardAccountNumberTypeEnum", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardNetworkEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardNetworkEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardProductTypeEnum/shape/enum/value/CONSUMER", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardProductTypeEnum/shape/enum/value/BUSINESS", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardProductTypeEnum/shape/enum/value/GOVERNMENT", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardProductTypeEnum/shape/enum/value/UNKNOWN", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardProductTypeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardProductTypeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/DOMESTIC_USE_ONLY", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/NONE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/UNKNOWN", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardRegionRestrictionEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardRegionRestrictionEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/0", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/1", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/2", @@ -87,6 +127,8 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/5", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/6", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/7", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/descriptor", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentType", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodToken", @@ -94,6 +136,9 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodType", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodData", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/threeDSecureAuthentication", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum/shape/enum/value/AW", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum/shape/enum/value/AF", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum/shape/enum/value/AO", @@ -343,6 +388,8 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum/shape/enum/value/ZA", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum/shape/enum/value/ZM", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum/shape/enum/value/ZW", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency/shape/enum/value/AED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency/shape/enum/value/AFN", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency/shape/enum/value/ALL", @@ -525,12 +572,23 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency/shape/enum/value/ZAR", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency/shape/enum/value/ZMW", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency/shape/enum/value/ZWL", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/name", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/processorMerchantId", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountCaptured", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountRefunded", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:GoCardlessMandateApiSchema/shape/object/property/gocardlessMandateId", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:GoCardlessMandateApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:GoCardlessMandateApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:GoCardlessMandateApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:IdealPayNlTokenApiSchema/shape/object/property/paymentMethodConfigId", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:IdealPayNlTokenApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:IdealPayNlTokenApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/title", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/firstName", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/lastName", @@ -543,10 +601,19 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/state", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/countryCode", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/postalCode", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/klarnaCustomerToken", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/sessionData", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaCustomerTokenApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/klarnaAuthorizationToken", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/sessionData", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaPaymentSessionApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/recurringDescription", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/billingAddress", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/shippingAddress", @@ -555,21 +622,36 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/locale", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/orderLines", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/tokenDetails", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails/shape/object/property/type", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails/shape/object/property/brand", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails/shape/object/property/masked_number", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails/shape/object/property/expiry_date", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalBillingAgreementId", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/externalPayerInfo", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/shippingAddress", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalStatus", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/externalPayerId", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/email", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/firstName", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/lastName", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalOrderId", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/externalPayerInfo", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalStatus", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalOrderTokenApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalOrderTokenApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/first6Digits", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/last4Digits", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/expirationMonth", @@ -578,27 +660,44 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/network", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/isNetworkTokenized", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/binData", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema/shape/object/property/type", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema/shape/object/property/declineType", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema/shape/object/property/code", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema/shape/object/property/message", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentMethodTypeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentMethodTypeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/RELOADABLE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NON_RELOADABLE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NOT_APPLICABLE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/UNKNOWN", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PrepaidReloadableEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PrepaidReloadableEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/NOT_PERFORMED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/SKIPPED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_SUCCESS", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_FAILED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/CHALLENGE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/METHOD", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/0", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/1", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/responseCode", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonCode", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonText", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/protocolVersion", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/challengeIssued", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/UNKNOWN", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REJECTED_BY_ISSUER", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/CARD_AUTHENTICATION_FAILED", @@ -634,6 +733,8 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/PROTOCOL_VERSION_NOT_SUPPORTED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/TRANSACTION_EXCLUDED_FROM_ATTEMPTS_PROCESSING", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REQUESTED_PROGRAM_NOT_SUPPORTED", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/GATEWAY_UNAVAILABLE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/DISABLED_BY_MERCHANT", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/NOT_SUPPORTED_BY_ISSUER", @@ -642,8 +743,12 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/3DS_SERVER_ERROR", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_CONFIGURED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_PARTICIPATING", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:DeclineTypeEnum/shape/enum/value/SOFT_DECLINE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:DeclineTypeEnum/shape/enum/value/HARD_DECLINE", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:DeclineTypeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:DeclineTypeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ERROR", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/INVALID_CARD_NUMBER", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/EXPIRED_CARD", @@ -657,6 +762,8 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/WITHDRAWAL_LIMIT_EXCEEDED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ISSUER_TEMPORARILY_UNAVAILABLE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/AUTHENTICATION_REQUIRED", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/date", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/amount", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/currencyCode", @@ -666,6 +773,9 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorMerchantId", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatus", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatusReason", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus/shape/enum/value/PENDING", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus/shape/enum/value/FAILED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus/shape/enum/value/AUTHORIZED", @@ -674,11 +784,17 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus/shape/enum/value/SETTLED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus/shape/enum/value/DECLINED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus/shape/enum/value/CANCELLED", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/APPLICATION_ERROR", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/GATEWAY_REJECTED", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/ISSUER_DECLINED", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatusTypeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatusTypeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionTypeEnum/shape/enum/value/SALE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionTypeEnum/shape/enum/value/REFUND", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionTypeEnum/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionTypeEnum", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape/object/property/firstName", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape/object/property/lastName", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape/object/property/addressLine1", @@ -687,131 +803,15 @@ "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape/object/property/state", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape/object/property/countryCode", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape/object/property/postalCode", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape/object", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/FIRST_PAYMENT", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/ECOMMERCE", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/SUBSCRIPTION", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/UNSCHEDULED", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardNetworkEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentMethodTypeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringPaymentTypeSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/request/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadNotificationConfig/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadNotificationConfig/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:GoCardlessMandateApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape/object", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardAccountNumberTypeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardNetworkEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardProductTypeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardRegionRestrictionEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentMethodTypeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PrepaidReloadableEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:DeclineTypeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatusTypeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionTypeEnum/shape", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringTransactionTypeEnum/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringPaymentTypeSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/example/0", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/example/0", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/example/0", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event/request", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event/request", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/request", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadNotificationConfig/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadNotificationConfig/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AccountFundingTypeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ApayaCustomerTokenApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardAccountNumberTypeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardProductTypeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CardRegionRestrictionEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:CountryCodeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:Currency", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:GoCardlessMandateApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:IdealPayNlTokenApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalOrderTokenApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PrepaidReloadableEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:DeclineTypeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionDeclineReasonV2Enum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema/shape", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatus", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentStatusTypeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionTypeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema/shape", "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringTransactionTypeEnum", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadNotificationConfig", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentStatusWebhookPayloadPayment", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadNotificationConfig", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_paymentWebhooks:PaymentRefundWebhookPayloadPayment", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ApayaCustomerTokenApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:BinDataApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentResponseProcessorApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:GoCardlessMandateApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:IdealPayNlTokenApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaAddressApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaCustomerTokenApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaPaymentSessionApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaSessionDetailsApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:KlarnaTokenDetails", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalBillingAgreementApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalExternalPayerInfoApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PayPalOrderTokenApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:PaymentCardTokenApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:StatusReasonApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:ThreeDSecureAuthenticationApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:TransactionOverviewApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:AddressApiSchema", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_status_webhook_event", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_paymentWebhooks.payment_refund_webhook_event", - "3e1141df-b4bc-4dab-9542-53cf91851645/endpoint/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event" + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringPaymentTypeSchema/shape", + "3e1141df-b4bc-4dab-9542-53cf91851645/type-definition/type_:RecurringPaymentTypeSchema" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-7ed504c0-fc2e-4a52-b3fd-b277869eda14.json b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-7ed504c0-fc2e-4a52-b3fd-b277869eda14.json index 4782fb9c36..d640cca313 100644 --- a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-7ed504c0-fc2e-4a52-b3fd-b277869eda14.json +++ b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-7ed504c0-fc2e-4a52-b3fd-b277869eda14.json @@ -1,8 +1,17 @@ [ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/query/clientToken", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/1", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/2/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/2", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/orderId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/currencyCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/amount", @@ -11,9 +20,20 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/customer", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/metadata", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/paymentMethod", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/clientToken", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/customerId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/orderId", @@ -23,9 +43,20 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/customer", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/order", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object/property/paymentMethod", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/1", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/2/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/2", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/query/status", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/query/payment_method_type", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/query/processor", @@ -43,8 +74,14 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/query/klarna_email", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/query/limit", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/query/cursor", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/error/0/422/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/error/0/422", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/example/1", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/requestHeader/X-Idempotency-Key", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/request/object/property/orderId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/request/object/property/currencyCode", @@ -55,60 +92,149 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/request/object/property/customer", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/request/object/property/metadata", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/request/object/property/paymentMethod", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/request/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/request", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/error/0/400", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/error/1/422/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/error/1/422", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/example/1", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/example/2/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/example/2", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/path/id", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/requestHeader/X-Idempotency-Key", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/amount", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/final", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/metadata", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/request/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/request", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/error/0/400", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/error/1/422/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/error/1/422", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/example/1", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/example/2/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/example/2", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/path/id", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/requestHeader/X-Idempotency-Key", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/request/object/property/reason", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/request/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/request", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/example/1", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/path/id", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/requestHeader/X-Idempotency-Key", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/amount", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/orderId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/reason", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/request/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/request", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/error/0/400", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/error/1/422/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/error/1/422", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/example/1", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/example/2/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/example/2", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/path/id", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/request/object/property/resumeToken", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/request/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/request", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/error/0/400", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/example/1", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/path/id", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/example/1", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/path/paymentMethodToken", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object/property/customerId", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/2/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/2", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/query/customer_id", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/response", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/path/paymentMethodToken", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/path/paymentMethodToken", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/response", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400/error/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1/snippet/curl/0", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CREDIT", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEBIT", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/PREPAID", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CHARGE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEFERRED_DEBIT", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/UNKNOWN", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mx", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mnc", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mcc", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ApayaCustomerTokenApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ApayaCustomerTokenApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataOptionalApiSchema/shape/object/property/network", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataOptionalApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataOptionalApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataOptionalApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape/object/property/network", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape/object/property/issuerCountryCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape/object/property/issuerName", @@ -120,11 +246,18 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape/object/property/productUsageType", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape/object/property/productCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape/object/property/productName", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/3DS_AUTHENTICATION", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/USE_PRIMER_SDK", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BlockingPaymentActionTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BlockingPaymentActionTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/PRIMARY_ACCOUNT_NUMBER", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/NETWORK_TOKEN", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/UNKNOWN", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardAccountNumberTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardAccountNumberTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum/shape/enum/value/AMEX", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum/shape/enum/value/DANKORT", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum/shape/enum/value/DINERS_CLUB", @@ -141,20 +274,32 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum/shape/enum/value/UNIONPAY", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum/shape/enum/value/VISA", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum/shape/enum/value/OTHER", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardProductTypeEnum/shape/enum/value/CONSUMER", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardProductTypeEnum/shape/enum/value/BUSINESS", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardProductTypeEnum/shape/enum/value/GOVERNMENT", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardProductTypeEnum/shape/enum/value/UNKNOWN", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardProductTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardProductTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/DOMESTIC_USE_ONLY", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/NONE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/UNKNOWN", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardRegionRestrictionEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardRegionRestrictionEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema/shape/object/property/lineItems", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema/shape/object/property/countryCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema/shape/object/property/fees", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema/shape/object/property/shipping", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderFeesApiSchema/shape/object/property/amount", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderFeesApiSchema/shape/object/property/type", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderFeesApiSchema/shape/object/property/description", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderFeesApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderFeesApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderFeesApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/itemId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/description", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/amount", @@ -163,15 +308,33 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/taxAmount", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/taxCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/productType", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderShippingApiSchema/shape/object/property/amount", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderShippingApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderShippingApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderShippingApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object/property/", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object/property/PAYMENT_CARD", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/vaultOnSuccess", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/descriptor", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/paymentType", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/options", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object/property/surcharge", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object/property/networks", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/AMEX", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/DANKORT", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/DINERS_CLUB", @@ -188,11 +351,23 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/UNIONPAY", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/VISA", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/OTHER", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object/property/surcharge", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object/property/amount", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/vaultOnSuccess", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/descriptor", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/paymentType", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/1", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/2", @@ -201,6 +376,8 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/5", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/6", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/7", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/descriptor", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentType", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodToken", @@ -209,6 +386,9 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodType", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodData", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/threeDSecureAuthentication", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/emailAddress", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/mobileNumber", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/firstName", @@ -217,6 +397,9 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/shippingAddress", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/taxId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/nationalDocumentId", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/emailAddress", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/mobileNumber", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/firstName", @@ -225,6 +408,9 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/shippingAddress", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/taxId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/nationalDocumentId", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/clientToken", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/clientTokenExpirationDate", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/orderId", @@ -236,6 +422,9 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/metadata", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/paymentMethod", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object/property/warnings", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape/object/property/customerId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape/object/property/orderId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape/object/property/currencyCode", @@ -244,9 +433,15 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape/object/property/customer", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape/object/property/order", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape/object/property/paymentMethod", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/type", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/code", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/message", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWarningsApiResponse/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWarningsApiResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWarningsApiResponse", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum/shape/enum/value/AW", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum/shape/enum/value/AF", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum/shape/enum/value/AO", @@ -496,6 +691,8 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum/shape/enum/value/ZA", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum/shape/enum/value/ZM", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum/shape/enum/value/ZW", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency/shape/enum/value/AED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency/shape/enum/value/AFN", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency/shape/enum/value/ALL", @@ -678,12 +875,23 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency/shape/enum/value/ZAR", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency/shape/enum/value/ZMW", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency/shape/enum/value/ZWL", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/name", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/processorMerchantId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountCaptured", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountRefunded", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:GoCardlessMandateApiSchema/shape/object/property/gocardlessMandateId", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:GoCardlessMandateApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:GoCardlessMandateApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:GoCardlessMandateApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:IdealPayNlTokenApiSchema/shape/object/property/paymentMethodConfigId", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:IdealPayNlTokenApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:IdealPayNlTokenApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/title", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/firstName", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/lastName", @@ -696,10 +904,19 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/state", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/countryCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/postalCode", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/klarnaCustomerToken", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/sessionData", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaCustomerTokenApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/klarnaAuthorizationToken", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/sessionData", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaPaymentSessionApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/recurringDescription", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/billingAddress", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/shippingAddress", @@ -708,21 +925,36 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/locale", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/orderLines", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/tokenDetails", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails/shape/object/property/type", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails/shape/object/property/brand", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails/shape/object/property/masked_number", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails/shape/object/property/expiry_date", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalBillingAgreementId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/externalPayerInfo", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/shippingAddress", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalStatus", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/externalPayerId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/email", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/firstName", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/lastName", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalOrderId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/externalPayerInfo", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalStatus", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalOrderTokenApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalOrderTokenApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape/object/property/id", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape/object/property/date", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape/object/property/status", @@ -738,6 +970,9 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape/object/property/requiredAction", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape/object/property/statusReason", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape/object/property/transactions", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/first6Digits", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/last4Digits", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/expirationMonth", @@ -746,10 +981,16 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/network", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/isNetworkTokenized", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/binData", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema/shape/object/property/type", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema/shape/object/property/declineType", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema/shape/object/property/code", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema/shape/object/property/message", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYMENT_CARD", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYPAL_ORDER", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYPAL_BILLING_AGREEMENT", @@ -763,12 +1004,20 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/APPLE_PAY", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/APPLE_PAY_ENCRYPTED_TOKEN", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/GOOGLE_PAY", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentListApiResponse/shape/object/property/data", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentListApiResponse/shape/object/property/nextCursor", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentListApiResponse/shape/object/property/prevCursor", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentListApiResponse/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentListApiResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentListApiResponse", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/name", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/description", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/clientToken", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequiredActionApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequiredActionApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequiredActionApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/id", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/date", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/status", @@ -777,31 +1026,52 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/currencyCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/amount", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/metadata", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object/property/name", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object/property/processorMerchantId", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryProcessorApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryProcessorApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/RELOADABLE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NON_RELOADABLE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NOT_APPLICABLE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/UNKNOWN", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PrepaidReloadableEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PrepaidReloadableEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/FIRST_PAYMENT", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/ECOMMERCE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/SUBSCRIPTION", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/UNSCHEDULED", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringTransactionTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringTransactionTypeEnum", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringPaymentTypeSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringPaymentTypeSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ProductTypeEnum/shape/enum/value/PHYSICAL", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ProductTypeEnum/shape/enum/value/DIGITAL", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ProductTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ProductTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/NOT_PERFORMED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/SKIPPED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_SUCCESS", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_FAILED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/CHALLENGE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/METHOD", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/1", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/responseCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonText", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/protocolVersion", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/challengeIssued", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/UNKNOWN", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REJECTED_BY_ISSUER", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/CARD_AUTHENTICATION_FAILED", @@ -837,6 +1107,8 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/PROTOCOL_VERSION_NOT_SUPPORTED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/TRANSACTION_EXCLUDED_FROM_ATTEMPTS_PROCESSING", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REQUESTED_PROGRAM_NOT_SUPPORTED", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/GATEWAY_UNAVAILABLE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/DISABLED_BY_MERCHANT", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/NOT_SUPPORTED_BY_ISSUER", @@ -845,10 +1117,16 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/3DS_SERVER_ERROR", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_CONFIGURED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_PARTICIPATING", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TokenTypeEnum/shape/enum/value/MULTI_USE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TokenTypeEnum/shape/enum/value/SINGLE_USE", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TokenTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TokenTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:DeclineTypeEnum/shape/enum/value/SOFT_DECLINE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:DeclineTypeEnum/shape/enum/value/HARD_DECLINE", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:DeclineTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:DeclineTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ERROR", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/INVALID_CARD_NUMBER", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/EXPIRED_CARD", @@ -862,6 +1140,8 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/WITHDRAWAL_LIMIT_EXCEEDED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ISSUER_TEMPORARILY_UNAVAILABLE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/AUTHENTICATION_REQUIRED", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/date", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/amount", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/currencyCode", @@ -871,6 +1151,9 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorMerchantId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatus", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatusReason", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus/shape/enum/value/PENDING", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus/shape/enum/value/FAILED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus/shape/enum/value/AUTHORIZED", @@ -879,11 +1162,17 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus/shape/enum/value/SETTLED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus/shape/enum/value/DECLINED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus/shape/enum/value/CANCELLED", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/APPLICATION_ERROR", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/GATEWAY_REJECTED", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/ISSUER_DECLINED", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatusTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatusTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionTypeEnum/shape/enum/value/SALE", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionTypeEnum/shape/enum/value/REFUND", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionTypeEnum/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionTypeEnum", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/firstName", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/lastName", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/addressLine1", @@ -892,6 +1181,9 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/state", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/countryCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/postalCode", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape/object/property/firstName", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape/object/property/lastName", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape/object/property/addressLine1", @@ -900,11 +1192,16 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape/object/property/state", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape/object/property/countryCode", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape/object/property/postalCode", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/0", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/1", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/2", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/3", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/4", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/createdAt", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/deletedAt", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/deleted", @@ -916,9 +1213,21 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/customerId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/description", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/default", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape/object/property/isVerified", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape/object/property/data", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenListApiResponse", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape/object/property/data", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/last4Digits", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/expirationMonth", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/expirationYear", @@ -926,327 +1235,18 @@ "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/network", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/networkTransactionId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/accountFundingType", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ErrorObject/shape/object/property/errorId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ErrorObject/shape/object/property/description", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ErrorObject/shape/object/property/diagnosticsId", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ErrorObject/shape/object/property/validationErrors", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/error/0/422/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/error/1/422/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/error/1/422/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/error/1/422/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/response", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400/error/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringPaymentTypeSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:four_hundred_ErrorResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/request/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/request/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/request/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/request/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/request/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataOptionalApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderFeesApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderShippingApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWarningsApiResponse/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:GoCardlessMandateApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentListApiResponse/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequiredActionApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ErrorObject/shape/object", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BlockingPaymentActionTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardAccountNumberTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardProductTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardRegionRestrictionEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PrepaidReloadableEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringTransactionTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringPaymentTypeSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ProductTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TokenTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:DeclineTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatusTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionTypeEnum/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:four_hundred_ErrorResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:four_hundred_twenty_two_ErrorResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/error/1/422", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken/example/2", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/error/1/422", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/example/2", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/error/0/422", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/error/1/422", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/example/2", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/error/1/422", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/example/2", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/error/1/422", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/example/2", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/1/422", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/2", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken/request", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken/request", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment/request", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment/request", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment/request", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment/request", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment/request", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AccountFundingTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ApayaCustomerTokenApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataOptionalApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BlockingPaymentActionTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardAccountNumberTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardNetworkEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardProductTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CardRegionRestrictionEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderFeesApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderShippingApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWarningsApiResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CountryCodeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:Currency", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:GoCardlessMandateApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:IdealPayNlTokenApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalOrderTokenApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentMethodTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentListApiResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequiredActionApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryProcessorApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PrepaidReloadableEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:RecurringTransactionTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ProductTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TokenTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:DeclineTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionDeclineReasonV2Enum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatus", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentStatusTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionTypeEnum", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ErrorObject/shape", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ApayaCustomerTokenApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataOptionalApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:BinDataApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderDetailsApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderFeesApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderLineItemsApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:OrderShippingApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CheckoutCustomerDetailsApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CustomerDetailsApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWithTokenApiResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionApiResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ClientSessionWarningsApiResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentResponseProcessorApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:GoCardlessMandateApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:IdealPayNlTokenApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaAddressApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaCustomerTokenApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaPaymentSessionApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaSessionDetailsApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:KlarnaTokenDetails", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalBillingAgreementApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalExternalPayerInfoApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PayPalOrderTokenApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentApiResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:StatusReasonApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentListApiResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentRequiredActionApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentSummaryProcessorApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ThreeDSecureAuthenticationApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:TransactionOverviewApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:AddressApiSchema", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenApiResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenApiResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:MerchantPaymentMethodTokenListApiResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:VerifiedMerchantPaymentMethodTokenListApiResponse", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi", "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:ErrorObject", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.retrieveClientSideToken", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.createClientSideToken", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_clientSessionApi.updateClientSideToken", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.listPayments", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.createPayment", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.capturePayment", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.cancelPayment", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.refundPayment", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.resumePayment", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentsApi.getPaymentById", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete", - "7ed504c0-fc2e-4a52-b3fd-b277869eda14/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post" + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:four_hundred_ErrorResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:four_hundred_ErrorResponse", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape", + "7ed504c0-fc2e-4a52-b3fd-b277869eda14/type-definition/type_:four_hundred_twenty_two_ErrorResponse" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-c5629660-3984-4ce0-989e-9c6fb0df36d9.json b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-c5629660-3984-4ce0-989e-9c6fb0df36d9.json index bb3e6a010b..2a9b201748 100644 --- a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-c5629660-3984-4ce0-989e-9c6fb0df36d9.json +++ b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-c5629660-3984-4ce0-989e-9c6fb0df36d9.json @@ -1,21 +1,38 @@ [ + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/payload/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/payload", "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/header/X-Signature-Primary", "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/header/X-Signature-Secondary", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/payload/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/payload", "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/header/X-Signature-Primary", "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/header/X-Signature-Secondary", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/payload/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/payload", "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/header/X-Signature-Primary", "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/header/X-Signature-Secondary", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/payload/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/payload", "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/header/X-Signature-Primary", "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/header/X-Signature-Secondary", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CREDIT", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEBIT", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/PREPAID", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CHARGE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEFERRED_DEBIT", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/UNKNOWN", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mx", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mnc", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mcc", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ApayaCustomerTokenApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ApayaCustomerTokenApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape/object/property/network", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape/object/property/issuerCountryCode", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape/object/property/issuerName", @@ -27,16 +44,27 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape/object/property/productUsageType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape/object/property/productCode", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape/object/property/productName", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/PRIMARY_ACCOUNT_NUMBER", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/NETWORK_TOKEN", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/UNKNOWN", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardAccountNumberTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardAccountNumberTypeEnum", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardNetworkEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardNetworkEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardProductTypeEnum/shape/enum/value/CONSUMER", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardProductTypeEnum/shape/enum/value/BUSINESS", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardProductTypeEnum/shape/enum/value/GOVERNMENT", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardProductTypeEnum/shape/enum/value/UNKNOWN", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardProductTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardProductTypeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/DOMESTIC_USE_ONLY", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/NONE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/UNKNOWN", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardRegionRestrictionEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardRegionRestrictionEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/0", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/1", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/2", @@ -45,6 +73,8 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/5", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/6", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/7", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/descriptor", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodToken", @@ -53,6 +83,9 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodData", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/threeDSecureAuthentication", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum/shape/enum/value/AW", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum/shape/enum/value/AF", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum/shape/enum/value/AO", @@ -302,6 +335,8 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum/shape/enum/value/ZA", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum/shape/enum/value/ZM", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum/shape/enum/value/ZW", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency/shape/enum/value/AED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency/shape/enum/value/AFN", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency/shape/enum/value/ALL", @@ -484,12 +519,23 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency/shape/enum/value/ZAR", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency/shape/enum/value/ZMW", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency/shape/enum/value/ZWL", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/name", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/processorMerchantId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountCaptured", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountRefunded", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:GoCardlessMandateApiSchema/shape/object/property/gocardlessMandateId", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:GoCardlessMandateApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:GoCardlessMandateApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:GoCardlessMandateApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:IdealPayNlTokenApiSchema/shape/object/property/paymentMethodConfigId", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:IdealPayNlTokenApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:IdealPayNlTokenApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/title", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/firstName", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/lastName", @@ -502,10 +548,19 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/state", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/countryCode", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/postalCode", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/klarnaCustomerToken", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/sessionData", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaCustomerTokenApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/klarnaAuthorizationToken", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/sessionData", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaPaymentSessionApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/recurringDescription", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/billingAddress", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/shippingAddress", @@ -514,23 +569,41 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/locale", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/orderLines", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/tokenDetails", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails/shape/object/property/type", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails/shape/object/property/brand", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails/shape/object/property/masked_number", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails/shape/object/property/expiry_date", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalBillingAgreementId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/externalPayerInfo", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/shippingAddress", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalStatus", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/externalPayerId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/email", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/firstName", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/lastName", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalOrderId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/externalPayerInfo", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalStatus", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalOrderTokenApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalOrderTokenApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape/object/property/id", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape/object/property/description", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/id", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/date", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/status", @@ -544,13 +617,22 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/statusReason", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/transactions", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/riskData", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/eventType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/date", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/notificationConfig", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/version", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/payment", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape/object/property/id", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape/object/property/description", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/id", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/date", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/status", @@ -564,11 +646,17 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/statusReason", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/transactions", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/riskData", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/eventType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/date", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/notificationConfig", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/version", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/payment", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/eventType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/processorId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/processorDisputeId", @@ -576,9 +664,14 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/transactionId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/orderId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/primerAccountId", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadType/shape/enum/value/RETRIEVAL", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadType/shape/enum/value/DISPUTE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadType/shape/enum/value/PREARBITRATION", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadType/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/OPEN", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/ACCEPTED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/CHALLENGED", @@ -586,11 +679,21 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/CANCELLED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/WON", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/LOST", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape/object/property/network", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape/object/property/paymentMethodType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape/object/property/paymentMethodData", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadProcessor/shape/enum/value/ADYEN", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadProcessor/shape/enum/value/BRAINTREE", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadProcessor/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadProcessor", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/eventType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/version", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/type", @@ -610,6 +713,9 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/amount", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/currency", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/merchantId", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/first6Digits", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/last4Digits", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/expirationMonth", @@ -618,49 +724,85 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/network", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/isNetworkTokenized", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/binData", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema/shape/object/property/type", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema/shape/object/property/declineType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema/shape/object/property/code", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema/shape/object/property/message", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskDataApiSchema/shape/object/property/fraudChecks", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskDataApiSchema/shape/object/property/cvvCheck", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskDataApiSchema/shape/object/property/avsCheck", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskDataApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskDataApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskDataApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudCheckApiSchema/shape/object/property/source", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudCheckApiSchema/shape/object/property/preAuthorizationResult", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudCheckApiSchema/shape/object/property/postAuthorizationResult", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudCheckApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudCheckApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudCheckApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/ACCEPT", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/REFUSE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/FAILED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/THREE_DS", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudDecisionTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudDecisionTypeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CvvCheckApiSchema/shape/object/property/source", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CvvCheckApiSchema/shape/object/property/result", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CvvCheckApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CvvCheckApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CvvCheckApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsCheckApiSchema/shape/object/property/source", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsCheckApiSchema/shape/object/property/result", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsCheckApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsCheckApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsCheckApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsRiskAssessmentValues/shape/object/property/streetAddress", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsRiskAssessmentValues/shape/object/property/postalCode", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsRiskAssessmentValues/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsRiskAssessmentValues/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsRiskAssessmentValues", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/MATCHED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_MATCHED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_VERIFIED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_PROVIDED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_APPLICABLE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/SKIPPED", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentMethodTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentMethodTypeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/RELOADABLE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NON_RELOADABLE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NOT_APPLICABLE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/UNKNOWN", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PrepaidReloadableEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PrepaidReloadableEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/NOT_PERFORMED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/SKIPPED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_SUCCESS", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_FAILED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/CHALLENGE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/METHOD", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/0", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/1", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/responseCode", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonCode", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonText", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/protocolVersion", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/challengeIssued", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/UNKNOWN", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REJECTED_BY_ISSUER", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/CARD_AUTHENTICATION_FAILED", @@ -696,6 +838,8 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/PROTOCOL_VERSION_NOT_SUPPORTED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/TRANSACTION_EXCLUDED_FROM_ATTEMPTS_PROCESSING", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REQUESTED_PROGRAM_NOT_SUPPORTED", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/GATEWAY_UNAVAILABLE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/DISABLED_BY_MERCHANT", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/NOT_SUPPORTED_BY_ISSUER", @@ -704,8 +848,12 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/3DS_SERVER_ERROR", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_CONFIGURED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_PARTICIPATING", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DeclineTypeEnum/shape/enum/value/SOFT_DECLINE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DeclineTypeEnum/shape/enum/value/HARD_DECLINE", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DeclineTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DeclineTypeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ERROR", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/INVALID_CARD_NUMBER", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/EXPIRED_CARD", @@ -719,12 +867,17 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/WITHDRAWAL_LIMIT_EXCEEDED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ISSUER_TEMPORARILY_UNAVAILABLE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/AUTHENTICATION_REQUIRED", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/transactionType", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorTransactionId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorName", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorMerchantId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatus", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatusReason", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus/shape/enum/value/PENDING", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus/shape/enum/value/FAILED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus/shape/enum/value/AUTHORIZED", @@ -733,11 +886,17 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus/shape/enum/value/SETTLED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus/shape/enum/value/DECLINED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus/shape/enum/value/CANCELLED", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/APPLICATION_ERROR", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/GATEWAY_REJECTED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/ISSUER_DECLINED", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusTypeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionTypeEnum/shape/enum/value/SALE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionTypeEnum/shape/enum/value/REFUND", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionTypeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape/object/property/firstName", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape/object/property/lastName", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape/object/property/addressLine1", @@ -746,12 +905,21 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape/object/property/state", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape/object/property/countryCode", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape/object/property/postalCode", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/FIRST_PAYMENT", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/ECOMMERCE", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/SUBSCRIPTION", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/UNSCHEDULED", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringTransactionTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringTransactionTypeEnum", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringPaymentTypeSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringPaymentTypeSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AuthorizationTypeEnum/shape/enum/value/ESTIMATED", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AuthorizationTypeEnum/shape/enum/value/FINAL", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AuthorizationTypeEnum/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AuthorizationTypeEnum", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/firstName", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/lastName", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/addressLine1", @@ -760,6 +928,9 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/state", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/countryCode", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape/object/property/postalCode", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape/object", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape", + "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/emailAddress", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/mobileNumber", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/firstName", @@ -768,178 +939,7 @@ "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/shippingAddress", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/taxId", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/nationalDocumentId", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/payload/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/payload/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/payload/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/payload/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardNetworkEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentMethodTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringPaymentTypeSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:GoCardlessMandateApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskDataApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudCheckApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CvvCheckApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsCheckApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsRiskAssessmentValues/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape/object", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/payload", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/payload", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/payload", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/payload", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardAccountNumberTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardNetworkEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardProductTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardRegionRestrictionEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadType/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadProcessor/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudDecisionTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentMethodTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PrepaidReloadableEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DeclineTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringTransactionTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringPaymentTypeSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AuthorizationTypeEnum/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AccountFundingTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ApayaCustomerTokenApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardAccountNumberTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardProductTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CardRegionRestrictionEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CountryCodeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:Currency", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:GoCardlessMandateApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:IdealPayNlTokenApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalOrderTokenApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadType", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadStatus", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadProcessor", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskDataApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudCheckApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudDecisionTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CvvCheckApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsCheckApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsRiskAssessmentValues/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskAssessmentStatusEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PrepaidReloadableEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DeclineTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionDeclineReasonV2Enum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatus", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RecurringTransactionTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AuthorizationTypeEnum", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema/shape", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ApayaCustomerTokenApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:BinDataApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentResponseProcessorApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:GoCardlessMandateApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:IdealPayNlTokenApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaAddressApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaCustomerTokenApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaPaymentSessionApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaSessionDetailsApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:KlarnaTokenDetails", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalBillingAgreementApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalExternalPayerInfoApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PayPalOrderTokenApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayloadPayment", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentStatusWebhookPayload", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayloadPayment", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentRefundWebhookPayload", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeOpenWebhookPayload", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:DisputeStatusWebhookPayload", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:PaymentCardTokenApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:StatusReasonApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:RiskDataApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:FraudCheckApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CvvCheckApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsCheckApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AvsRiskAssessmentValues", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:ThreeDSecureAuthenticationApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:TransactionOverviewApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:AddressApiSchema", - "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:OptionalAddressApiSchema", "c5629660-3984-4ce0-989e-9c6fb0df36d9/type-definition/type_:CheckoutCustomerDetailsApiSchema" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-ca56f687-5be3-4661-aeed-674a0f1f7193.json b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-ca56f687-5be3-4661-aeed-674a0f1f7193.json index a369fabb3c..13475393a8 100644 --- a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-ca56f687-5be3-4661-aeed-674a0f1f7193.json +++ b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-ca56f687-5be3-4661-aeed-674a0f1f7193.json @@ -1,21 +1,38 @@ [ + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/payload/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/payload", "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/header/X-Signature-Primary", "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/header/X-Signature-Secondary", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/payload/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/payload", "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/header/X-Signature-Primary", "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/header/X-Signature-Secondary", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/payload/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/payload", "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/header/X-Signature-Primary", "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/header/X-Signature-Secondary", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/payload/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/payload", "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/header/X-Signature-Primary", "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/header/X-Signature-Secondary", + "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CREDIT", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEBIT", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/PREPAID", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CHARGE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEFERRED_DEBIT", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/UNKNOWN", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mx", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mnc", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mcc", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ApayaCustomerTokenApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ApayaCustomerTokenApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape/object/property/network", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape/object/property/issuerCountryCode", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape/object/property/issuerName", @@ -27,16 +44,27 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape/object/property/productUsageType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape/object/property/productCode", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape/object/property/productName", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/PRIMARY_ACCOUNT_NUMBER", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/NETWORK_TOKEN", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/UNKNOWN", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardAccountNumberTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardAccountNumberTypeEnum", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardNetworkEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardNetworkEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardProductTypeEnum/shape/enum/value/CONSUMER", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardProductTypeEnum/shape/enum/value/BUSINESS", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardProductTypeEnum/shape/enum/value/GOVERNMENT", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardProductTypeEnum/shape/enum/value/UNKNOWN", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardProductTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardProductTypeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/DOMESTIC_USE_ONLY", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/NONE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/UNKNOWN", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardRegionRestrictionEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardRegionRestrictionEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/0", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/1", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/2", @@ -45,6 +73,8 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/5", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/6", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/7", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/descriptor", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodToken", @@ -53,6 +83,9 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodData", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/threeDSecureAuthentication", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum/shape/enum/value/AW", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum/shape/enum/value/AF", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum/shape/enum/value/AO", @@ -302,6 +335,8 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum/shape/enum/value/ZA", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum/shape/enum/value/ZM", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum/shape/enum/value/ZW", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency/shape/enum/value/AED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency/shape/enum/value/AFN", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency/shape/enum/value/ALL", @@ -484,12 +519,23 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency/shape/enum/value/ZAR", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency/shape/enum/value/ZMW", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency/shape/enum/value/ZWL", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/name", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/processorMerchantId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountCaptured", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountRefunded", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:GoCardlessMandateApiSchema/shape/object/property/gocardlessMandateId", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:GoCardlessMandateApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:GoCardlessMandateApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:GoCardlessMandateApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:IdealPayNlTokenApiSchema/shape/object/property/paymentMethodConfigId", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:IdealPayNlTokenApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:IdealPayNlTokenApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/title", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/firstName", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/lastName", @@ -502,10 +548,19 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/state", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/countryCode", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/postalCode", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/klarnaCustomerToken", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/sessionData", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaCustomerTokenApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/klarnaAuthorizationToken", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/sessionData", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaPaymentSessionApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/recurringDescription", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/billingAddress", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/shippingAddress", @@ -514,23 +569,41 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/locale", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/orderLines", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/tokenDetails", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails/shape/object/property/type", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails/shape/object/property/brand", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails/shape/object/property/masked_number", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails/shape/object/property/expiry_date", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalBillingAgreementId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/externalPayerInfo", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/shippingAddress", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalStatus", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/externalPayerId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/email", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/firstName", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/lastName", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalOrderId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/externalPayerInfo", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalStatus", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalOrderTokenApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalOrderTokenApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape/object/property/id", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape/object/property/description", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/id", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/date", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/status", @@ -544,13 +617,22 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/statusReason", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/transactions", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object/property/riskData", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/eventType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/date", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/notificationConfig", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/version", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload/shape/object/property/payment", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape/object/property/id", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape/object/property/description", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/id", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/date", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/status", @@ -564,11 +646,17 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/statusReason", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/transactions", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object/property/riskData", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/eventType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/date", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/notificationConfig", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/version", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload/shape/object/property/payment", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/eventType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/processorId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/processorDisputeId", @@ -576,9 +664,14 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/transactionId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/orderId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape/object/property/primerAccountId", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadType/shape/enum/value/RETRIEVAL", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadType/shape/enum/value/DISPUTE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadType/shape/enum/value/PREARBITRATION", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadType/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/OPEN", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/ACCEPTED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/CHALLENGED", @@ -586,11 +679,21 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/CANCELLED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/WON", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape/enum/value/LOST", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape/object/property/network", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape/object/property/paymentMethodType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape/object/property/paymentMethodData", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadProcessor/shape/enum/value/ADYEN", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadProcessor/shape/enum/value/BRAINTREE", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadProcessor/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadProcessor", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/eventType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/version", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/type", @@ -610,6 +713,9 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/amount", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/currency", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape/object/property/merchantId", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/first6Digits", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/last4Digits", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/expirationMonth", @@ -618,49 +724,85 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/network", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/isNetworkTokenized", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/binData", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema/shape/object/property/type", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema/shape/object/property/declineType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema/shape/object/property/code", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema/shape/object/property/message", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskDataApiSchema/shape/object/property/fraudChecks", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskDataApiSchema/shape/object/property/cvvCheck", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskDataApiSchema/shape/object/property/avsCheck", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskDataApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskDataApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskDataApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudCheckApiSchema/shape/object/property/source", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudCheckApiSchema/shape/object/property/preAuthorizationResult", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudCheckApiSchema/shape/object/property/postAuthorizationResult", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudCheckApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudCheckApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudCheckApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/ACCEPT", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/REFUSE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/FAILED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudDecisionTypeEnum/shape/enum/value/THREE_DS", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudDecisionTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudDecisionTypeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CvvCheckApiSchema/shape/object/property/source", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CvvCheckApiSchema/shape/object/property/result", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CvvCheckApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CvvCheckApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CvvCheckApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsCheckApiSchema/shape/object/property/source", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsCheckApiSchema/shape/object/property/result", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsCheckApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsCheckApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsCheckApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsRiskAssessmentValues/shape/object/property/streetAddress", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsRiskAssessmentValues/shape/object/property/postalCode", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsRiskAssessmentValues/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsRiskAssessmentValues/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsRiskAssessmentValues", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/MATCHED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_MATCHED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_VERIFIED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_PROVIDED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/NOT_APPLICABLE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum/shape/enum/value/SKIPPED", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentMethodTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentMethodTypeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/RELOADABLE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NON_RELOADABLE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NOT_APPLICABLE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/UNKNOWN", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PrepaidReloadableEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PrepaidReloadableEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/NOT_PERFORMED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/SKIPPED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_SUCCESS", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_FAILED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/CHALLENGE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/METHOD", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/0", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/1", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/responseCode", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonCode", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonText", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/protocolVersion", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/challengeIssued", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/UNKNOWN", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REJECTED_BY_ISSUER", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/CARD_AUTHENTICATION_FAILED", @@ -696,6 +838,8 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/PROTOCOL_VERSION_NOT_SUPPORTED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/TRANSACTION_EXCLUDED_FROM_ATTEMPTS_PROCESSING", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REQUESTED_PROGRAM_NOT_SUPPORTED", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/GATEWAY_UNAVAILABLE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/DISABLED_BY_MERCHANT", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/NOT_SUPPORTED_BY_ISSUER", @@ -704,8 +848,12 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/3DS_SERVER_ERROR", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_CONFIGURED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_PARTICIPATING", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DeclineTypeEnum/shape/enum/value/SOFT_DECLINE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DeclineTypeEnum/shape/enum/value/HARD_DECLINE", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DeclineTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DeclineTypeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ERROR", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/INVALID_CARD_NUMBER", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/EXPIRED_CARD", @@ -719,12 +867,17 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/WITHDRAWAL_LIMIT_EXCEEDED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ISSUER_TEMPORARILY_UNAVAILABLE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/AUTHENTICATION_REQUIRED", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/transactionType", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorTransactionId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorName", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorMerchantId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatus", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatusReason", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus/shape/enum/value/PENDING", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus/shape/enum/value/FAILED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus/shape/enum/value/AUTHORIZED", @@ -733,11 +886,17 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus/shape/enum/value/SETTLED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus/shape/enum/value/DECLINED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus/shape/enum/value/CANCELLED", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/APPLICATION_ERROR", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/GATEWAY_REJECTED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/ISSUER_DECLINED", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusTypeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionTypeEnum/shape/enum/value/SALE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionTypeEnum/shape/enum/value/REFUND", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionTypeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape/object/property/firstName", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape/object/property/lastName", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape/object/property/addressLine1", @@ -746,12 +905,21 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape/object/property/state", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape/object/property/countryCode", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape/object/property/postalCode", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/FIRST_PAYMENT", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/ECOMMERCE", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/SUBSCRIPTION", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/UNSCHEDULED", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringTransactionTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringTransactionTypeEnum", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringPaymentTypeSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringPaymentTypeSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AuthorizationTypeEnum/shape/enum/value/ESTIMATED", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AuthorizationTypeEnum/shape/enum/value/FINAL", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AuthorizationTypeEnum/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AuthorizationTypeEnum", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape/object/property/firstName", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape/object/property/lastName", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape/object/property/addressLine1", @@ -760,6 +928,9 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape/object/property/state", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape/object/property/countryCode", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape/object/property/postalCode", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape/object", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape", + "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/emailAddress", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/mobileNumber", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/firstName", @@ -768,178 +939,7 @@ "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/shippingAddress", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/taxId", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/nationalDocumentId", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/payload/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/payload/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/payload/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/payload/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardNetworkEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentMethodTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringPaymentTypeSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:GoCardlessMandateApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskDataApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudCheckApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CvvCheckApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsCheckApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsRiskAssessmentValues/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape/object", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event/payload", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event/payload", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event/payload", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event/payload", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardAccountNumberTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardNetworkEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardProductTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardRegionRestrictionEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadType/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadProcessor/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudDecisionTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentMethodTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PrepaidReloadableEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DeclineTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringTransactionTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringPaymentTypeSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AuthorizationTypeEnum/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AccountFundingTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ApayaCustomerTokenApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardAccountNumberTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardProductTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CardRegionRestrictionEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CountryCodeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:Currency", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:GoCardlessMandateApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:IdealPayNlTokenApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalOrderTokenApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadType", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadStatus", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadProcessor", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskDataApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudCheckApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudDecisionTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CvvCheckApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsCheckApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsRiskAssessmentValues/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskAssessmentStatusEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PrepaidReloadableEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DeclineTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionDeclineReasonV2Enum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatus", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RecurringTransactionTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AuthorizationTypeEnum", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema/shape", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_status_webhook_event", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_paymentWebhooks.payment_refund_webhook_event", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_open_webhook_event", - "ca56f687-5be3-4661-aeed-674a0f1f7193/webhoook/subpackage_disputeChargebacksWebhooks.dispute_status_webhook_event", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ApayaCustomerTokenApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:BinDataApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentResponseProcessorApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:GoCardlessMandateApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:IdealPayNlTokenApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaAddressApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaCustomerTokenApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaPaymentSessionApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaSessionDetailsApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:KlarnaTokenDetails", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalBillingAgreementApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalExternalPayerInfoApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PayPalOrderTokenApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadNotificationConfig", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayloadPayment", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentStatusWebhookPayload", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadNotificationConfig", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayloadPayment", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentRefundWebhookPayload", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeOpenWebhookPayload", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethodPaymentMethodData", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayloadPaymentMethod", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:DisputeStatusWebhookPayload", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:PaymentCardTokenApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:StatusReasonApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:RiskDataApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:FraudCheckApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CvvCheckApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsCheckApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AvsRiskAssessmentValues", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:ThreeDSecureAuthenticationApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:TransactionOverviewApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:AddressApiSchema", - "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:OptionalAddressApiSchema", "ca56f687-5be3-4661-aeed-674a0f1f7193/type-definition/type_:CheckoutCustomerDetailsApiSchema" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-fe590ab9-f9e7-4719-8ec5-b595affff88d.json b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-fe590ab9-f9e7-4719-8ec5-b595affff88d.json index 77dfbac3e7..3055eacdbe 100644 --- a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-fe590ab9-f9e7-4719-8ec5-b595affff88d.json +++ b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitionKeys-fe590ab9-f9e7-4719-8ec5-b595affff88d.json @@ -7,9 +7,20 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/customer", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/metadata", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object/property/paymentMethod", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/request", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/query/status", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/query/payment_method_type", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/query/processor", @@ -27,8 +38,14 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/query/klarna_email", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/query/limit", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/query/cursor", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/error/0/422/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/error/0/422", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/example/1", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/requestHeader/X-Idempotency-Key", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/request/object/property/orderId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/request/object/property/currencyCode", @@ -39,58 +56,144 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/request/object/property/customer", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/request/object/property/metadata", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/request/object/property/paymentMethod", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/request/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/request", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/error/0/400/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/error/0/400", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/error/1/422/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/error/1/422", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/example/1", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/example/2/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/example/2", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/path/id", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/requestHeader/X-Idempotency-Key", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/amount", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/request/object/property/final", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/request/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/request", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/error/0/400/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/error/0/400", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/error/1/422/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/error/1/422", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/example/1", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/example/2/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/example/2", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/path/id", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/requestHeader/X-Idempotency-Key", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/request/object/property/reason", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/request/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/request", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/example/1", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/path/id", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/requestHeader/X-Idempotency-Key", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/amount", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/orderId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/request/object/property/reason", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/request/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/request", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/error/0/400/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/error/0/400", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/error/1/422/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/error/1/422", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/example/1", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/example/2/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/example/2", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/path/id", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/request/object/property/resumeToken", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/request/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/request", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/error/0/400/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/error/0/400", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/example/1", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/path/id", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/example/1", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/path/token", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object/property/customerId", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/422/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/422", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/query/customer_id", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/response", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/path/token", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/path/token", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/response", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400/error/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1/snippet/curl/0", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CREDIT", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEBIT", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/PREPAID", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/CHARGE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/DEFERRED_DEBIT", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum/shape/enum/value/UNKNOWN", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mx", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mnc", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object/property/mcc", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ApayaCustomerTokenApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ApayaCustomerTokenApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataOptionalApiSchema/shape/object/property/network", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataOptionalApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataOptionalApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataOptionalApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape/object/property/network", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape/object/property/issuerCountryCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape/object/property/issuerName", @@ -102,11 +205,18 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape/object/property/productUsageType", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape/object/property/productCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape/object/property/productName", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/3DS_AUTHENTICATION", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BlockingPaymentActionTypeEnum/shape/enum/value/USE_PRIMER_SDK", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BlockingPaymentActionTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BlockingPaymentActionTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/PRIMARY_ACCOUNT_NUMBER", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/NETWORK_TOKEN", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardAccountNumberTypeEnum/shape/enum/value/UNKNOWN", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardAccountNumberTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardAccountNumberTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum/shape/enum/value/AMEX", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum/shape/enum/value/DANKORT", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum/shape/enum/value/DINERS_CLUB", @@ -123,13 +233,19 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum/shape/enum/value/UNIONPAY", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum/shape/enum/value/VISA", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum/shape/enum/value/OTHER", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardProductTypeEnum/shape/enum/value/CONSUMER", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardProductTypeEnum/shape/enum/value/BUSINESS", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardProductTypeEnum/shape/enum/value/GOVERNMENT", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardProductTypeEnum/shape/enum/value/UNKNOWN", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardProductTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardProductTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/DOMESTIC_USE_ONLY", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/NONE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardRegionRestrictionEnum/shape/enum/value/UNKNOWN", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardRegionRestrictionEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardRegionRestrictionEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape/object/property/customerId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape/object/property/orderId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape/object/property/currencyCode", @@ -138,13 +254,22 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape/object/property/customer", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape/object/property/order", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape/object/property/paymentMethod", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema/shape/object/property/countryCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema/shape/object/property/fees", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema/shape/object/property/lineItems", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema/shape/object/property/shipping", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderFeesApiSchema/shape/object/property/amount", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderFeesApiSchema/shape/object/property/type", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderFeesApiSchema/shape/object/property/description", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderFeesApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderFeesApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderFeesApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/itemId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/description", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/amount", @@ -153,13 +278,31 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/taxAmount", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/taxCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape/object/property/productType", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderShippingApiSchema/shape/object/property/amount", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderShippingApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderShippingApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderShippingApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object/property/", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object/property/PAYMENT_CARD", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/vaultOnSuccess", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object/property/options", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object/property/surcharge", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object/property/networks", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/AMEX", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/DANKORT", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/DINERS_CLUB", @@ -176,11 +319,23 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/UNIONPAY", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/VISA", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object/property/OTHER", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object/property/surcharge", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object/property/amount", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/vaultOnSuccess", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/descriptor", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object/property/paymentType", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/1", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/2", @@ -189,6 +344,8 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/5", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/6", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape/undiscriminatedUnion/variant/7", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/descriptor", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodToken", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/vaultedPaymentMethodToken", @@ -196,6 +353,9 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodType", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/paymentMethodData", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object/property/threeDSecureAuthentication", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/emailAddress", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/mobileNumber", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/firstName", @@ -204,6 +364,9 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/shippingAddress", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/taxId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object/property/nationalDocumentId", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/emailAddress", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/mobileNumber", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/firstName", @@ -212,6 +375,9 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/shippingAddress", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/taxId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape/object/property/nationalDocumentId", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape/object/property/clientToken", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape/object/property/clientTokenExpirationDate", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape/object/property/orderId", @@ -223,9 +389,15 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape/object/property/metadata", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape/object/property/paymentMethod", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape/object/property/warnings", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/type", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/code", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionWarningsApiResponse/shape/object/property/message", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionWarningsApiResponse/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionWarningsApiResponse/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionWarningsApiResponse", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum/shape/enum/value/AW", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum/shape/enum/value/AF", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum/shape/enum/value/AO", @@ -475,6 +647,8 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum/shape/enum/value/ZA", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum/shape/enum/value/ZM", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum/shape/enum/value/ZW", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency/shape/enum/value/AED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency/shape/enum/value/AFN", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency/shape/enum/value/ALL", @@ -657,12 +831,23 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency/shape/enum/value/ZAR", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency/shape/enum/value/ZMW", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency/shape/enum/value/ZWL", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/name", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/processorMerchantId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountCaptured", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object/property/amountRefunded", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:GoCardlessMandateApiSchema/shape/object/property/gocardlessMandateId", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:GoCardlessMandateApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:GoCardlessMandateApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:GoCardlessMandateApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:IdealPayNlTokenApiSchema/shape/object/property/paymentMethodConfigId", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:IdealPayNlTokenApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:IdealPayNlTokenApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/title", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/firstName", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/lastName", @@ -675,10 +860,19 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/state", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/countryCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape/object/property/postalCode", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/klarnaCustomerToken", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object/property/sessionData", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaCustomerTokenApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/klarnaAuthorizationToken", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object/property/sessionData", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaPaymentSessionApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/recurringDescription", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/billingAddress", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/shippingAddress", @@ -687,21 +881,36 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/locale", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/orderLines", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object/property/tokenDetails", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails/shape/object/property/type", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails/shape/object/property/brand", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails/shape/object/property/masked_number", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails/shape/object/property/expiry_date", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalBillingAgreementId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/externalPayerInfo", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/shippingAddress", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object/property/paypalStatus", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/externalPayerId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/email", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/firstName", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object/property/lastName", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalOrderId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/externalPayerInfo", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalOrderTokenApiSchema/shape/object/property/paypalStatus", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalOrderTokenApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalOrderTokenApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape/object/property/id", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape/object/property/date", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape/object/property/status", @@ -717,6 +926,9 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape/object/property/requiredAction", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape/object/property/statusReason", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape/object/property/transactions", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/first6Digits", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/last4Digits", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/expirationMonth", @@ -725,10 +937,16 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/network", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/isNetworkTokenized", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape/object/property/binData", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema/shape/object/property/type", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema/shape/object/property/declineType", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema/shape/object/property/code", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema/shape/object/property/message", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYMENT_CARD", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYPAL_ORDER", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/PAYPAL_BILLING_AGREEMENT", @@ -742,12 +960,20 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/APPLE_PAY", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/APPLE_PAY_ENCRYPTED_TOKEN", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum/shape/enum/value/GOOGLE_PAY", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentListApiResponse/shape/object/property/data", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentListApiResponse/shape/object/property/nextCursor", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentListApiResponse/shape/object/property/prevCursor", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentListApiResponse/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentListApiResponse/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentListApiResponse", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/name", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/description", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequiredActionApiSchema/shape/object/property/clientToken", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequiredActionApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequiredActionApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequiredActionApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/id", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/date", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/status", @@ -756,31 +982,50 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/currencyCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/amount", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape/object/property/metadata", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object/property/name", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object/property/processorMerchantId", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryProcessorApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryProcessorApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/RELOADABLE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NON_RELOADABLE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/NOT_APPLICABLE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PrepaidReloadableEnum/shape/enum/value/UNKNOWN", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PrepaidReloadableEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PrepaidReloadableEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/FIRST_PAYMENT", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/ECOMMERCE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/SUBSCRIPTION", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:RecurringTransactionTypeEnum/shape/enum/value/UNSCHEDULED", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:RecurringTransactionTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:RecurringTransactionTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ProductTypeEnum/shape/enum/value/PHYSICAL", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ProductTypeEnum/shape/enum/value/DIGITAL", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ProductTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ProductTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/NOT_PERFORMED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/SKIPPED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_SUCCESS", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/AUTH_FAILED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/CHALLENGE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape/enum/value/METHOD", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape/undiscriminatedUnion/variant/1", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/responseCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/reasonText", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/protocolVersion", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object/property/challengeIssued", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/UNKNOWN", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REJECTED_BY_ISSUER", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/CARD_AUTHENTICATION_FAILED", @@ -816,6 +1061,8 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/PROTOCOL_VERSION_NOT_SUPPORTED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/TRANSACTION_EXCLUDED_FROM_ATTEMPTS_PROCESSING", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape/enum/value/REQUESTED_PROGRAM_NOT_SUPPORTED", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/GATEWAY_UNAVAILABLE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/DISABLED_BY_MERCHANT", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/NOT_SUPPORTED_BY_ISSUER", @@ -824,10 +1071,16 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/3DS_SERVER_ERROR", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_CONFIGURED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape/enum/value/ACQUIRER_NOT_PARTICIPATING", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TokenTypeEnum/shape/enum/value/MULTI_USE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TokenTypeEnum/shape/enum/value/SINGLE_USE", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TokenTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TokenTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:DeclineTypeEnum/shape/enum/value/SOFT_DECLINE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:DeclineTypeEnum/shape/enum/value/HARD_DECLINE", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:DeclineTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:DeclineTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ERROR", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/INVALID_CARD_NUMBER", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/EXPIRED_CARD", @@ -841,25 +1094,36 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/WITHDRAWAL_LIMIT_EXCEEDED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/ISSUER_TEMPORARILY_UNAVAILABLE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum/shape/enum/value/AUTHENTICATION_REQUIRED", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/transactionType", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorTransactionId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorName", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorMerchantId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatus", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape/object/property/processorStatusReason", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/PENDING", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/FAILED", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/PENDING", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/FAILED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/AUTHORIZED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/SETTLING", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/PARTIALLY_SETTLED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/SETTLED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/DECLINED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape/enum/value/CANCELLED", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/APPLICATION_ERROR", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/GATEWAY_REJECTED", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatusTypeEnum/shape/enum/value/ISSUER_DECLINED", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatusTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatusTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionTypeEnum/shape/enum/value/SALE", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionTypeEnum/shape/enum/value/REFUND", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionTypeEnum/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionTypeEnum", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/firstName", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/lastName", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/addressLine1", @@ -868,6 +1132,9 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/state", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/countryCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object/property/postalCode", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape/object/property/firstName", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape/object/property/lastName", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape/object/property/addressLine1", @@ -876,11 +1143,16 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape/object/property/state", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape/object/property/countryCode", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape/object/property/postalCode", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/0", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/1", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/2", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/3", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape/undiscriminatedUnion/variant/4", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/createdAt", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/deletedAt", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/deleted", @@ -891,7 +1163,13 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/paymentMethodData", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/customerId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object/property/default", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape/object/property/data", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenListApiResponse", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/last4Digits", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/expirationMonth", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/expirationYear", @@ -899,296 +1177,18 @@ "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/network", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/networkTransactionId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object/property/accountFundingType", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ErrorObject/shape/object/property/errorId", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ErrorObject/shape/object/property/description", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ErrorObject/shape/object/property/recoverySuggestion", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ErrorObject/shape/object/property/diagnosticsId", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/error/0/422/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/error/0/400/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/error/1/422/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/error/0/400/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/error/1/422/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/error/0/400/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/error/1/422/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/error/0/400/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/422/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/response", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400/error/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:four_hundred_ErrorResponse/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/request/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/request/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/request/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/request/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/request/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/request/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ApayaCustomerTokenApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataOptionalApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderFeesApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderShippingApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionWarningsApiResponse/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:GoCardlessMandateApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:IdealPayNlTokenApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaCustomerTokenApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaPaymentSessionApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalOrderTokenApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentListApiResponse/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequiredActionApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryProcessorApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape/object", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ErrorObject/shape/object", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BlockingPaymentActionTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardAccountNumberTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardProductTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardRegionRestrictionEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PrepaidReloadableEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:RecurringTransactionTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ProductTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TokenTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:DeclineTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatusTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionTypeEnum/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:four_hundred_ErrorResponse", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:four_hundred_twenty_two_ErrorResponse", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/error/0/400", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/error/1/422", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/example/2", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/error/0/422", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/error/0/400", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/error/1/422", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/example/2", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/error/0/400", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/error/1/422", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/example/2", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/error/0/400", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/error/0/400", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/error/1/422", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/example/2", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/error/0/400", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/error/0/400", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/error/0/422", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/error/0/400", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/error/0/400", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/0", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post/example/1", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken/request", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment/request", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment/request", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment/request", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment/request", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment/request", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post/request", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AccountFundingTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ApayaCustomerTokenApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataOptionalApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BlockingPaymentActionTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardAccountNumberTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardNetworkEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardProductTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CardRegionRestrictionEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderFeesApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderShippingApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchemaPaymentMethodData", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionWarningsApiResponse/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CountryCodeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:Currency", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:GoCardlessMandateApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:IdealPayNlTokenApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaCustomerTokenApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaPaymentSessionApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalOrderTokenApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentMethodTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentListApiResponse/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequiredActionApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryProcessorApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PrepaidReloadableEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:RecurringTransactionTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ProductTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthResponseCodeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchemaReasonCode", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureFailedReasonCodeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureSkippedReasonCodeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TokenTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:DeclineTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionDeclineReasonV2Enum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatus", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentStatusTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionTypeEnum", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponsePaymentMethodData", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenListApiResponse/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi/shape", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ErrorObject/shape", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ApayaCustomerTokenApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataOptionalApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:BinDataApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionUpdateApiRequest", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderDetailsApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderFeesApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderLineItemsApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:OrderShippingApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchemaOptions", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionsApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodCardOptionApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionCardNetworkSurchargeApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutPaymentMethodOptionSurchargeApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequestPaymentMethodOptionsApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponsePaymentMethodOptionsApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CheckoutCustomerDetailsApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CustomerDetailsApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionApiResponse", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ClientSessionWarningsApiResponse", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentResponseProcessorApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:GoCardlessMandateApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:IdealPayNlTokenApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaAddressApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaCustomerTokenApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaPaymentSessionApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaSessionDetailsApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:KlarnaTokenDetails", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalBillingAgreementApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalExternalPayerInfoApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PayPalOrderTokenApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentApiResponse", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:StatusReasonApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentListApiResponse", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentRequiredActionApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentSummaryProcessorApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ThreeDSecureAuthenticationApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:TransactionOverviewApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:CoreApiApiCommonsSchemasAddessAddressApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:AddressApiSchema", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenApiResponse", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:MerchantPaymentMethodTokenListApiResponse", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:PaymentCardTokenApiSchemaPaymentMethodsApi", "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:ErrorObject", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_clientSessionApi.createClientSideToken", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.listPayments", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.createPayment", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.capturePayment", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.cancelPayment", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.refundPayment", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.resumePayment", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentsApi.getPaymentById", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.vault_payment_method_payment_methods__token__vault_post", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.get_payment_methods_payment_methods_get", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.delete_payment_method_payment_methods__token__delete", - "fe590ab9-f9e7-4719-8ec5-b595affff88d/endpoint/subpackage_paymentMethodsApi.set_payment_method_default_payment_methods__token__default_post" + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:four_hundred_ErrorResponse/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:four_hundred_ErrorResponse", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:four_hundred_twenty_two_ErrorResponse/shape", + "fe590ab9-f9e7-4719-8ec5-b595affff88d/type-definition/type_:four_hundred_twenty_two_ErrorResponse" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitions.json b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitions.json index 89a05de877..16a2beb9e7 100644 --- a/packages/fdr-sdk/src/__test__/output/primer/apiDefinitions.json +++ b/packages/fdr-sdk/src/__test__/output/primer/apiDefinitions.json @@ -11059,6 +11059,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -11069,6 +11070,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11459,6 +11461,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -11469,6 +11472,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -11982,6 +11986,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -11992,6 +11997,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -12636,6 +12642,7 @@ }, "errors": [ { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -12955,6 +12962,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -12965,6 +12973,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -13335,6 +13344,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -13345,6 +13355,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -13355,6 +13366,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -13365,6 +13377,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -13878,6 +13891,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -13888,6 +13902,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -14240,6 +14255,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -14587,6 +14603,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -14597,6 +14614,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -14918,6 +14936,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -15223,6 +15242,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -15233,6 +15253,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -15243,6 +15264,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -15585,6 +15607,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -15857,6 +15880,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -15867,6 +15891,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -16155,6 +16180,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -16300,6 +16326,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -16959,6 +16986,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -17163,6 +17191,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -17173,6 +17202,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -17404,6 +17434,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -17414,6 +17445,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -29286,6 +29318,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -29296,6 +29329,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -29677,6 +29711,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -29687,6 +29722,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -30183,6 +30219,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -30193,6 +30230,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -30820,6 +30858,7 @@ }, "errors": [ { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -31135,6 +31174,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -31145,6 +31185,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -31540,6 +31581,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -31550,6 +31592,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -31869,6 +31912,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -32189,6 +32233,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -32199,6 +32244,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -32491,6 +32537,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -32722,6 +32769,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -32967,6 +33015,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -32977,6 +33026,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -33239,6 +33289,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -33371,6 +33422,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -46467,6 +46519,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -46477,6 +46530,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -46867,6 +46921,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -46877,6 +46932,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -47390,6 +47446,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -47400,6 +47457,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -48044,6 +48102,7 @@ }, "errors": [ { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -48363,6 +48422,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -48373,6 +48433,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -48743,6 +48804,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -48753,6 +48815,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -48763,6 +48826,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -48773,6 +48837,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -49288,6 +49353,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -49298,6 +49364,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -49308,6 +49375,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -49701,6 +49769,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -49711,6 +49780,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -50099,6 +50169,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -50109,6 +50180,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -50119,6 +50191,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -50481,6 +50554,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -50786,6 +50860,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -50796,6 +50871,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -50806,6 +50882,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -50816,6 +50893,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -51201,6 +51279,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -51473,6 +51552,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -51483,6 +51563,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -51771,6 +51852,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -51916,6 +51998,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -52575,6 +52658,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -52779,6 +52863,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -52789,6 +52874,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -53020,6 +53106,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -53030,6 +53117,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -65311,6 +65399,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -65321,6 +65410,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -65950,6 +66040,7 @@ }, "errors": [ { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -66261,6 +66352,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -66271,6 +66363,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -66631,6 +66724,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -66641,6 +66735,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -66952,6 +67047,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -67268,6 +67364,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -67278,6 +67375,7 @@ } }, { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -67562,6 +67660,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -67789,6 +67888,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -68030,6 +68130,7 @@ }, "errors": [ { + "name": "Unprocessable Entity", "statusCode": 422, "shape": { "type": "alias", @@ -68251,6 +68352,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -68379,6 +68481,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", diff --git a/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-15c16fe3-9b9c-4a04-ae4f-f9749d504bc7.json b/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-15c16fe3-9b9c-4a04-ae4f-f9749d504bc7.json index 9100a18817..add66fd6ce 100644 --- a/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-15c16fe3-9b9c-4a04-ae4f-f9749d504bc7.json +++ b/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-15c16fe3-9b9c-4a04-ae4f-f9749d504bc7.json @@ -1,10 +1,27 @@ [ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/UPLOADCARE_PUB_KEY/property/UPLOADCARE_PUB_KEY", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/UPLOADCARE_PUB_KEY", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/UPLOADCARE_STORE/property/UPLOADCARE_STORE", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/UPLOADCARE_STORE", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/{filename}/file/{filename}", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/{filename}", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/metadata[{key}]/property/metadata[{key}]", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/metadata[{key}]", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/signature/property/signature", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/signature", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/expire/property/expire", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/expire", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/response", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/0/400/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/0/400", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/1/403/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/1/403", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/2/413/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/2/413", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/3/429/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/3/429", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/0/snippet/javascript/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/0/snippet/php/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/0/snippet/python/0", @@ -12,10 +29,16 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/0/snippet/swift/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/0/snippet/kotlin/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/0/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/1/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/1", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/2/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/2", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/3/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/3", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/4/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/4", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request/object/property/UPLOADCARE_PUB_KEY", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request/object/property/UPLOADCARE_STORE", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request/object/property/filename", @@ -25,6 +48,15 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request/object/property/metadata[{key}]", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request/object/property/signature", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request/object/property/expire", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/response", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/0/400/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/0/400", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/1/403/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/1/403", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/2/429/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/2/429", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/0/snippet/javascript/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/0/snippet/php/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/0/snippet/python/0", @@ -32,12 +64,29 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/0/snippet/swift/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/0/snippet/kotlin/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/0/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/1/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/1", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/2/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/2", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/3/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/3", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadPart/request", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadPart/example/0/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadPart/example/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadPart", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/request/object/property/UPLOADCARE_PUB_KEY", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/request/object/property/uuid", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/request/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/request", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/response", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/0/400/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/0/400", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/1/403/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/1/403", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/2/404/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/2/404", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/0/snippet/javascript/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/0/snippet/php/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/0/snippet/python/0", @@ -45,9 +94,14 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/0/snippet/swift/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/0/snippet/kotlin/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/0/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/1/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/1", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/2/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/2", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/3/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/3", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request/object/property/pub_key", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request/object/property/source_url", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request/object/property/store", @@ -57,6 +111,15 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request/object/property/metadata[{key}]", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request/object/property/signature", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request/object/property/expire", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/response", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/0/400/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/0/400", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/1/403/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/1/403", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/2/429/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/2/429", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/0/snippet/javascript/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/0/snippet/php/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/0/snippet/python/0", @@ -64,10 +127,18 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/0/snippet/swift/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/0/snippet/kotlin/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/0/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/1/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/1", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/2/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/2", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/3/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/3", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/query/token", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/response", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/error/0/400/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/error/0/400", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/0/snippet/javascript/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/0/snippet/php/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/0/snippet/python/0", @@ -75,9 +146,19 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/0/snippet/swift/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/0/snippet/kotlin/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/0/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/1/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/1", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/query/pub_key", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/query/file_id", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/response", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/0/400/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/0/400", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/1/403/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/1/403", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/2/404/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/2/404", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/0/snippet/javascript/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/0/snippet/php/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/0/snippet/python/0", @@ -85,13 +166,25 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/0/snippet/swift/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/0/snippet/kotlin/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/0/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/1/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/1", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/2/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/2", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/3/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/3", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/request/object/property/pub_key", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/request/object/property/files[]", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/request/object/property/signature", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/request/object/property/expire", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/request/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/request", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/response", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/error/0/400/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/error/0/400", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/error/1/403/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/error/1/403", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/0/snippet/javascript/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/0/snippet/php/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/0/snippet/python/0", @@ -99,10 +192,21 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/0/snippet/swift/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/0/snippet/kotlin/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/0/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/1/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/1", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/2/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/2", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/query/pub_key", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/query/group_id", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/response", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/0/400/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/0/400", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/1/403/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/1/403", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/2/404/error/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/2/404", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/0/snippet/javascript/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/0/snippet/php/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/0/snippet/python/0", @@ -110,26 +214,53 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/0/snippet/swift/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/0/snippet/kotlin/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/0/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/1/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/1", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/2/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/2", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/3/snippet/curl/0", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/3", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:BaseUploadResponse/shape/object/property/filename", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:BaseUploadResponse/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:BaseUploadResponse/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:BaseUploadResponse", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:MultipartFileUploadStartResponse/shape/object/property/uuid", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:MultipartFileUploadStartResponse/shape/object/property/parts", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:MultipartFileUploadStartResponse/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:MultipartFileUploadStartResponse/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:MultipartFileUploadStartResponse", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestCheckUrlDuplicates/shape/enum/value/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestCheckUrlDuplicates/shape/enum/value/1", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestCheckUrlDuplicates/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestCheckUrlDuplicates", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestSaveUrlDuplicates/shape/enum/value/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestSaveUrlDuplicates/shape/enum/value/1", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestSaveUrlDuplicates/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestSaveUrlDuplicates", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadResponse/shape/undiscriminatedUnion/variant/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadResponse/shape/undiscriminatedUnion/variant/1", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadResponse/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadResponse", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadStatusResponse/shape/undiscriminatedUnion/variant/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadStatusResponse/shape/undiscriminatedUnion/variant/1", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadStatusResponse/shape/undiscriminatedUnion/variant/2", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadStatusResponse/shape/undiscriminatedUnion/variant/3", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadStatusResponse/shape/undiscriminatedUnion/variant/4", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadStatusResponse/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadStatusResponse", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureType/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureType", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ExpireType/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ExpireType", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:StoreType/shape/enum/value/0", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:StoreType/shape/enum/value/1", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:StoreType/shape/enum/value/auto", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:StoreType/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:StoreType", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ProjectPublicKeyType/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ProjectPublicKeyType", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape/object/property/uuid", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape/object/property/file_id", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape/object/property/size", @@ -146,18 +277,42 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape/object/property/is_stored", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape/object/property/is_ready", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape/object/property/s3_bucket", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoWaitingStatus/shape/object/property/status", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoWaitingStatus/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoWaitingStatus/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoWaitingStatus", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoProgressStatus/shape/object/property/status", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoProgressStatus/shape/object/property/total", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoProgressStatus/shape/object/property/done", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoProgressStatus/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoProgressStatus/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoProgressStatus", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoSuccessStatus/shape/object/property/status", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoSuccessStatus/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoSuccessStatus/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoSuccessStatus", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoErrorStatus/shape/object/property/status", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoErrorStatus/shape/object/property/error", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoErrorStatus/shape/object/property/error_code", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoErrorStatus/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoErrorStatus/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoErrorStatus", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoUnknownStatus/shape/object/property/status", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoUnknownStatus/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoUnknownStatus/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoUnknownStatus", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoFromUrl/shape/object/property/type", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoFromUrl/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoFromUrl/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoFromUrl", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FromUrlUploadResponseSchema/shape/object/property/type", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FromUrlUploadResponseSchema/shape/object/property/token", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FromUrlUploadResponseSchema/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FromUrlUploadResponseSchema/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FromUrlUploadResponseSchema", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo/shape/object/property/id", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo/shape/object/property/datetime_created", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo/shape/object/property/datetime_stored", @@ -165,410 +320,255 @@ "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo/shape/object/property/cdn_url", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo/shape/object/property/url", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo/shape/object/property/files", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGB", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGBA", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGBa", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGBX", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/L", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/LA", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/La", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/P", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/PA", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/CMYK", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/YCbCr", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/HSV", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/LAB", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoGeoLocation/shape/object/property/latitude", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoGeoLocation/shape/object/property/longitude", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/color_mode", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/orientation", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/format", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/sequence", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/height", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/width", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/geo_location", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/datetime_original", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/dpi", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object/property/bitrate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object/property/codec", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object/property/sample_rate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object/property/channels", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/height", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/width", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/frame_rate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/bitrate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/codec", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/duration", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/format", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/bitrate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/audio", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/video", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/RGB", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/RGBA", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/RGBa", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/RGBX", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/L", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/LA", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/La", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/P", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/PA", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/CMYK", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/YCbCr", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/HSV", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/LAB", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoGeoLocation/shape/object/property/latitude", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoGeoLocation/shape/object/property/longitude", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/color_mode", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/orientation", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/format", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/sequence", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/height", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/width", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/geo_location", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/datetime_original", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/dpi", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object/property/bitrate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object/property/codec", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object/property/sample_rate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object/property/channels", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/height", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/width", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/frame_rate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/bitrate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/codec", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/duration", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/format", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/bitrate", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/audio", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/video", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape/object/property/mime", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape/object/property/type", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape/object/property/subtype", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape/object/property/mime", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape/object/property/image", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape/object/property/video", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/response", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/0/400/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/1/403/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/2/413/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/3/429/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/response", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/0/400/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/1/403/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/2/429/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadPart/request", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/response", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/0/400/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/1/403/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/2/404/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/response", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/0/400/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/1/403/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/2/429/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/response", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/error/0/400/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/response", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/0/400/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/1/403/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/2/404/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/response", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/error/0/400/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/error/1/403/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/response", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/0/400/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/1/403/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/2/404/error/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureType/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ExpireType/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ProjectPublicKeyType/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MetadataValue/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AutoStoreDisabledError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UploadcarePublicKeyRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:PublicKeyRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UploadcarePublicKeyInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:PublicKeyInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ProjectPublicKeyRemovedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AccountBlockedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AccountUnpaidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UploadFailedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AccountLimitsExceededError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureExpirationError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:RequestFiledsNumberLimitExceededError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:PostRequestParserFailedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:NullCharactersForbiddenError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyDuplicatedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyEmptyError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyForbiddenError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyLengthTooBigError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataValueEmptyError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataValueForbiddenError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataValueLengthTooBigError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeysNumberTooBigError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FilesRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileSizeLimitExceededError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileTypeForbiddenError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileInfectedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:RequestParamRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartSizeInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileSizeLimitExceededError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileSizeTooSmallError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartPartSizeInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartPartSizeTooSmallError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartPartSizeTooBigError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileIdRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileAlreadyUploadedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartUploadSizeTooLargeError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartUploadSizeTooSmallError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileCompletionFailedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UuidInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SourceUrlRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlParsingFailedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlSchemeRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlSchemeInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlHostRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlBlacklistedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:HostnameNotFoundError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlHostMalformedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlHostPrivateIpForbiddenError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:TokenRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileIdRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileIdInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileNotFoundError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupFilesInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupFileUrlParsingFailedError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupFilesNotFoundError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupIdRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupNotFoundError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureExpirationRequiredError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureExpirationInvalidError/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:Metadata/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/UPLOADCARE_PUB_KEY", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/UPLOADCARE_STORE", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/{filename}", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/metadata[{key}]", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/signature", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata/field/expire", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/request/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/request/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:BaseUploadResponse/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:MultipartFileUploadStartResponse/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoWaitingStatus/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoProgressStatus/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoSuccessStatus/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoErrorStatus/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoUnknownStatus/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoFromUrl/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FromUrlUploadResponseSchema/shape/object", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoGeoLocation/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoGeoLocation/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape/object", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestCheckUrlDuplicates/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestSaveUrlDuplicates/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadResponse/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadStatusResponse/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureType", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ExpireType", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:StoreType/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ProjectPublicKeyType", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MetadataValue/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MetadataValue", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AutoStoreDisabledError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AutoStoreDisabledError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UploadcarePublicKeyRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UploadcarePublicKeyRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:PublicKeyRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:PublicKeyRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UploadcarePublicKeyInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UploadcarePublicKeyInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:PublicKeyInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:PublicKeyInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ProjectPublicKeyRemovedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ProjectPublicKeyRemovedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AccountBlockedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AccountBlockedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AccountUnpaidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AccountUnpaidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UploadFailedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UploadFailedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AccountLimitsExceededError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:AccountLimitsExceededError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureExpirationError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureExpirationError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:RequestFiledsNumberLimitExceededError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:RequestFiledsNumberLimitExceededError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:PostRequestParserFailedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:PostRequestParserFailedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:NullCharactersForbiddenError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:NullCharactersForbiddenError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyDuplicatedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyDuplicatedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyEmptyError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyEmptyError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyForbiddenError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyForbiddenError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyLengthTooBigError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeyLengthTooBigError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataValueEmptyError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataValueEmptyError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataValueForbiddenError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataValueForbiddenError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataValueLengthTooBigError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataValueLengthTooBigError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeysNumberTooBigError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileMetadataKeysNumberTooBigError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FilesRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FilesRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileSizeLimitExceededError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileSizeLimitExceededError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileTypeForbiddenError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileTypeForbiddenError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileInfectedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileInfectedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:RequestParamRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:RequestParamRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartSizeInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartSizeInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileSizeLimitExceededError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileSizeLimitExceededError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileSizeTooSmallError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileSizeTooSmallError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartPartSizeInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartPartSizeInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartPartSizeTooSmallError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartPartSizeTooSmallError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartPartSizeTooBigError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartPartSizeTooBigError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileIdRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileIdRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileAlreadyUploadedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileAlreadyUploadedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartUploadSizeTooLargeError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartUploadSizeTooLargeError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartUploadSizeTooSmallError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartUploadSizeTooSmallError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileCompletionFailedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:MultipartFileCompletionFailedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UuidInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UuidInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SourceUrlRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SourceUrlRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlParsingFailedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlParsingFailedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlSchemeRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlSchemeRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlSchemeInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlSchemeInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlHostRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlHostRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlBlacklistedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlBlacklistedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:HostnameNotFoundError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:HostnameNotFoundError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlHostMalformedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlHostMalformedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlHostPrivateIpForbiddenError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:UrlHostPrivateIpForbiddenError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:TokenRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:TokenRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileIdRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileIdRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileIdInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileIdInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileNotFoundError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileNotFoundError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupFilesInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupFilesInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupFileUrlParsingFailedError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupFileUrlParsingFailedError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupFilesNotFoundError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupFilesNotFoundError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupIdRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupIdRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupNotFoundError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupNotFoundError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureExpirationRequiredError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureExpirationRequiredError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureExpirationInvalidError/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SignatureExpirationInvalidError", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGB", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGBA", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGBa", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGBX", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/L", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/LA", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/La", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/P", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/PA", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/CMYK", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/YCbCr", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/HSV", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape/enum/value/LAB", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:Metadata", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/0/400", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/1/403", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/2/413", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/error/3/429", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/0", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/1", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/2", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/3", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/example/4", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/0/400", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/1/403", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/error/2/429", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/0", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/1", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/2", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/example/3", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadPart/example/0", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/0/400", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/1/403", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/error/2/404", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/0", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/1", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/2", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/example/3", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/0/400", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/1/403", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/error/2/429", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/0", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/1", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/2", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/example/3", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/error/0/400", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/0", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus/example/1", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/0/400", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/1/403", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/error/2/404", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/0", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/1", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/2", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo/example/3", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/error/0/400", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/error/1/403", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/0", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/1", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/example/2", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/0/400", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/1/403", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/error/2/404", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/0", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/1", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/2", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo/example/3", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request/formdata", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart/request", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete/request", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload/request", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup/request", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:BaseUploadResponse/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:MultipartFileUploadStartResponse/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestCheckUrlDuplicates", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadRequestSaveUrlDuplicates", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadResponse", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:FromUrlUploadStatusResponse", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:StoreType", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoWaitingStatus/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoProgressStatus/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoSuccessStatus/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoErrorStatus/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoUnknownStatus/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoFromUrl/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FromUrlUploadResponseSchema/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoColorMode", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoGeoLocation/shape/object/property/latitude", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoGeoLocation/shape/object/property/longitude", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoGeoLocation/shape/object", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoGeoLocation/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoGeoLocation", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/color_mode", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/orientation", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/format", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/sequence", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/height", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/width", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/geo_location", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/datetime_original", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object/property/dpi", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape/object", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object/property/bitrate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object/property/codec", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object/property/sample_rate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object/property/channels", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape/object", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/height", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/width", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/frame_rate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/bitrate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object/property/codec", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape/object", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/duration", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/format", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/bitrate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/audio", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object/property/video", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape/object", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/RGB", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/RGBA", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/RGBa", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/RGBX", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/L", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/LA", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/La", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/P", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/PA", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/CMYK", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/YCbCr", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/HSV", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape/enum/value/LAB", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoColorMode", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoGeoLocation/shape/object/property/latitude", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoGeoLocation/shape/object/property/longitude", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoGeoLocation/shape/object", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoGeoLocation/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:BaseUploadResponse", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_upload:MultipartFileUploadStartResponse", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfo", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoWaitingStatus", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoProgressStatus", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoSuccessStatus", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoErrorStatus", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoUnknownStatus", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FileUploadInfoFromUrl", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:FromUrlUploadResponseSchema", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:GroupInfo", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfoGeoLocation", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ImageInfo", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoAudio", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfoVideo", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:LegacyVideoInfo", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfoGeoLocation", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/color_mode", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/orientation", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/format", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/sequence", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/height", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/width", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/geo_location", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/datetime_original", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object/property/dpi", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:SchemasImageInfo", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object/property/bitrate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object/property/codec", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object/property/sample_rate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object/property/channels", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoAudioItem", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/height", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/width", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/frame_rate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/bitrate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object/property/codec", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfoVideoItem", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/duration", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/format", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/bitrate", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/audio", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object/property/video", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:VideoInfo", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape/object/property/mime", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape/object/property/type", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape/object/property/subtype", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfoMime", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape/object/property/mime", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape/object/property/image", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape/object/property/video", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape/object", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo/shape", "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:ContentInfo", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload/request", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadStart", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadPart", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.multipartFileUploadComplete", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUpload", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fromURLUploadStatus", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.fileUploadInfo", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.createFilesGroup", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_groups.filesGroupInfo", - "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/endpoint/subpackage_upload.baseUpload" + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:Metadata/shape", + "15c16fe3-9b9c-4a04-ae4f-f9749d504bc7/type-definition/type_:Metadata" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-6e1b77b7-26ce-4bba-9544-a24a9b3519dc.json b/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-6e1b77b7-26ce-4bba-9544-a24a9b3519dc.json index 747352e206..57ec6a20eb 100644 --- a/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-6e1b77b7-26ce-4bba-9544-a24a9b3519dc.json +++ b/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-6e1b77b7-26ce-4bba-9544-a24a9b3519dc.json @@ -1,13 +1,28 @@ [ "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/path/uuid", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/response", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/error/0/404/error/shape", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/error/0/404", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/example/0/snippet/curl/0", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/example/0", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/example/1/snippet/curl/0", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/example/1", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/path/uuid", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/response", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/error/0/404/error/shape", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/error/0/404", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/example/0/snippet/curl/0", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/example/0", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/example/1/snippet/curl/0", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/example/1", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileNames.fileWithName/path/uuid", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileNames.fileWithName/path/filename", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileNames.fileWithName/response", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileNames.fileWithName/example/0/snippet/curl/0", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileNames.fileWithName/example/0", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileNames.fileWithName", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode/shape/enum/value/RGB", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode/shape/enum/value/RGBA", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode/shape/enum/value/RGBa", @@ -21,8 +36,13 @@ "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode/shape/enum/value/YCbCr", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode/shape/enum/value/HSV", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode/shape/enum/value/LAB", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode/shape", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileGeoLocation/shape/object/property/latitude", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileGeoLocation/shape/object/property/longitude", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileGeoLocation/shape/object", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileGeoLocation/shape", + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileGeoLocation", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File/shape/object/property/id", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File/shape/object/property/dpi", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File/shape/object/property/width", @@ -34,27 +54,7 @@ "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File/shape/object/property/geo_location", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File/shape/object/property/datetime_original", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File/shape/object/property/hash", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/response", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/error/0/404/error/shape", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/response", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/error/0/404/error/shape", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileNames.fileWithName/response", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileGeoLocation/shape/object", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File/shape/object", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode/shape", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/error/0/404", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/example/0", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson/example/1", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/error/0/404", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/example/0", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp/example/1", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileNames.fileWithName/example/0", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileColorMode", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileGeoLocation/shape", "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File/shape", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:FileGeoLocation", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJson", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileInformation.fileInfoJsonp", - "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/endpoint/subpackage_fileNames.fileWithName" + "6e1b77b7-26ce-4bba-9544-a24a9b3519dc/type-definition/type_:File" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-fb019a78-a773-4315-9c7b-6dcb585d6b30.json b/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-fb019a78-a773-4315-9c7b-6dcb585d6b30.json index c2d1df6ca5..3667acb85e 100644 --- a/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-fb019a78-a773-4315-9c7b-6dcb585d6b30.json +++ b/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitionKeys-fb019a78-a773-4315-9c7b-6dcb585d6b30.json @@ -1,5 +1,10 @@ [ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/path/uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/0/snippet/python/0", @@ -7,14 +12,25 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/query/removed", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/query/stored", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/query/limit", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/query/ordering", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/query/from", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/query/include", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/0/snippet/python/0", @@ -22,10 +38,24 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/path/uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/2/404/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/2/404", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/3/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/0/snippet/python/0", @@ -33,11 +63,26 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/4", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/path/uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/2/404/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/2/404", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/3/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/0/snippet/python/0", @@ -45,12 +90,27 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/4", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/path/uuid", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/query/include", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/2/404/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/2/404", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/3/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/0/snippet/python/0", @@ -58,10 +118,24 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/4", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/0/snippet/python/0", @@ -69,9 +143,22 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/0/snippet/python/0", @@ -79,12 +166,26 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/request/object/property/source", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/request/object/property/store", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/request/object/property/metadata", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/request/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/0/snippet/python/0", @@ -92,13 +193,27 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/request/object/property/source", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/request/object/property/target", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/request/object/property/make_public", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/request/object/property/pattern", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/request/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/0/snippet/python/0", @@ -106,49 +221,117 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/request/object/property/target", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/request/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/2/409/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/2/409", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/3/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/0/snippet/python/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/0/snippet/ruby/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/4", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/query/request_id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/0/snippet/python/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/0/snippet/ruby/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/request/object/property/target", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/request/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/2/409/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/2/409", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/3/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/0/snippet/python/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/4", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/query/request_id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/0/snippet/python/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/request/object/property/target", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/request/object/property/params", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/request/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/2/409/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/2/409", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/3/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/0/snippet/python/0", @@ -156,11 +339,22 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/4", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/query/request_id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/0/snippet/python/0", @@ -168,31 +362,66 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/request/object/property/target", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/request/object/property/params", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/request/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/2/409/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/2/409", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/3/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/0/snippet/python/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/0/snippet/ruby/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/4", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/query/request_id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/0/snippet/python/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/0/snippet/ruby/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/path/uuid", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/path/key", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/0/snippet/python/0", @@ -200,10 +429,20 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/path/uuid", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/path/key", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/0/snippet/python/0", @@ -211,10 +450,18 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/path/uuid", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/path/key", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/0/snippet/python/0", @@ -222,22 +469,47 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/query/limit", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/query/from", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/query/ordering", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/javascript/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/php/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/python/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/ruby/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/swift/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/2/429", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/javascript/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/php/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/python/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/ruby/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/path/uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/2/404/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/2/404", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/3/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/0/snippet/python/0", @@ -245,11 +517,25 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/4", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/path/uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/2/404/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/2/404", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/3/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/0/snippet/python/0", @@ -257,19 +543,44 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/4", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/0/snippet/python/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/0/snippet/ruby/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/0/snippet/python/0", @@ -277,9 +588,21 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/0/snippet/python/0", @@ -287,10 +610,22 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/path/id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/0/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/0/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/1/404/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/1/404", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/0/snippet/python/0", @@ -298,9 +633,20 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/2/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/2/429", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/0/snippet/python/0", @@ -308,28 +654,73 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/3", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/path/uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/2/404/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/2/404", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/3/429", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/4/503/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/4/503", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/4", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/5/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/5", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/request/object/property/paths", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/request/object/property/store", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/request/object/property/save_in_group", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/request/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/0/snippet/python/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/0/snippet/ruby/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/path/token", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/2/404/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/2/404", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/3/429", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/4/503/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/4/503", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/0/snippet/python/0", @@ -337,22 +728,51 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/4", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/5/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/5", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/request/object/property/paths", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/request/object/property/store", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/request/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/request", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/error/1/401", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/0/snippet/python/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/0/snippet/ruby/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/2", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/path/token", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/response", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/0/400/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/0/400", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/1/401/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/1/401", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/2/404/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/2/404", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/3/429/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/3/429", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/4/503/error/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/4/503", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/0/snippet/javascript/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/0/snippet/php/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/0/snippet/python/0", @@ -360,65 +780,123 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/0/snippet/swift/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/0/snippet/kotlin/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/0/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/1/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/2/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/3/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/4/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/4", "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/5/snippet/curl/0", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/5", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListRequestOrdering/shape/enum/value/datetime_uploaded", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListRequestOrdering/shape/enum/value/-datetime_uploaded", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListRequestOrdering/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListRequestOrdering", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponseTotals/shape/object/property/removed", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponseTotals/shape/object/property/stored", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponseTotals/shape/object/property/unstored", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponseTotals/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponseTotals/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponseTotals", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape/object/property/next", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape/object/property/previous", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape/object/property/total", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape/object/property/totals", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape/object/property/per_page", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape/object/property/results", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesStoringResponse/shape/object/property/status", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesStoringResponse/shape/object/property/problems", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesStoringResponse/shape/object/property/result", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesStoringResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesStoringResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesStoringResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesDeleteResponse/shape/object/property/status", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesDeleteResponse/shape/object/property/problems", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesDeleteResponse/shape/object/property/result", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesDeleteResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesDeleteResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesDeleteResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateLocalCopyRequestStore/shape/enum/value/true", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateLocalCopyRequestStore/shape/enum/value/false", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateLocalCopyRequestStore/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateLocalCopyRequestStore", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern/shape/enum/value/${default}", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern/shape/enum/value/${auto_filename}", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern/shape/enum/value/${effects}", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern/shape/enum/value/${filename}", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern/shape/enum/value/${uuid}", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern/shape/enum/value/${ext}", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecuteResponse/shape/object/property/request_id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecuteResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecuteResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecuteResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponseStatus/shape/enum/value/in_progress", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponseStatus/shape/enum/value/error", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponseStatus/shape/enum/value/done", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponseStatus/shape/enum/value/unknown", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponseStatus/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponseStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponse/shape/object/property/status", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecuteResponse/shape/object/property/request_id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecuteResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecuteResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecuteResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponseStatus/shape/enum/value/in_progress", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponseStatus/shape/enum/value/error", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponseStatus/shape/enum/value/done", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponseStatus/shape/enum/value/unknown", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponseStatus/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponseStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponse/shape/object/property/status", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteRequestParams/shape/object/property/purge_infected", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteRequestParams/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteRequestParams/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteRequestParams", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteResponse/shape/object/property/request_id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponseStatus/shape/enum/value/in_progress", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponseStatus/shape/enum/value/error", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponseStatus/shape/enum/value/done", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponseStatus/shape/enum/value/unknown", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponseStatus/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponseStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponse/shape/object/property/status", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsTypeLevel/shape/enum/value/none", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsTypeLevel/shape/enum/value/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsTypeLevel/shape/enum/value/2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsTypeLevel/shape/enum/value/latest", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsTypeLevel/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsTypeLevel", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsType/shape/enum/value/auto", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsType/shape/enum/value/person", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsType/shape/enum/value/product", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsType/shape/enum/value/car", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsType/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsType", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsChannels/shape/enum/value/rgba", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsChannels/shape/enum/value/alpha", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsChannels/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsChannels", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape/object/property/crop", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape/object/property/crop_margin", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape/object/property/scale", @@ -429,81 +907,158 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape/object/property/channels", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape/object/property/roi", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape/object/property/position", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteResponse/shape/object/property/request_id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponseResult/shape/object/property/file_id", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponseResult/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponseResult/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponseResult", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponse/shape/object/property/result", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListRequestOrdering/shape/enum/value/datetime_created", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListRequestOrdering/shape/enum/value/-datetime_created", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListRequestOrdering/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListRequestOrdering", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse/shape/object/property/next", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse/shape/object/property/previous", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse/shape/object/property/total", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse/shape/object/property/per_page", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse/shape/object/property/results", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormatConversionFormatsItem/shape/object/property/name", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormatConversionFormatsItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormatConversionFormatsItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormatConversionFormatsItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormat/shape/object/property/name", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormat/shape/object/property/conversion_formats", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormat/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormat/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormat", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseConvertedGroups/shape/object/property/{conversion_format}", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse/shape/object/property/error", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse/shape/object/property/format", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseConvertedGroups/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseConvertedGroups/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseConvertedGroups", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse/shape/object/property/error", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse/shape/object/property/format", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse/shape/object/property/converted_groups", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersStore/shape/enum/value/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersStore/shape/enum/value/false", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersStore/shape/enum/value/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersStore/shape/enum/value/true", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersStore/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersStore", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersSaveInGroup/shape/enum/value/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersSaveInGroup/shape/enum/value/false", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersSaveInGroup/shape/enum/value/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersSaveInGroup/shape/enum/value/true", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersSaveInGroup/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersSaveInGroup", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponseResultItem/shape/object/property/original_source", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponseResultItem/shape/object/property/uuid", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponseResultItem/shape/object/property/token", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponseResultItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponseResultItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponseResultItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponse/shape/object/property/problems", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponse/shape/object/property/result", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseStatus/shape/enum/value/pending", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseStatus/shape/enum/value/processing", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseStatus/shape/enum/value/finished", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseStatus/shape/enum/value/failed", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseStatus/shape/enum/value/cancelled", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseStatus/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseResult/shape/object/property/uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseResult/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseResult/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseResult", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponse/shape/object/property/status", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponse/shape/object/property/error", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponse/shape/object/property/result", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoJobSubmitParametersStore/shape/enum/value/0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoJobSubmitParametersStore/shape/enum/value/false", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoJobSubmitParametersStore/shape/enum/value/1", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoJobSubmitParametersStore/shape/enum/value/true", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoJobSubmitParametersStore/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoJobSubmitParametersStore", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem/shape/object/property/original_source", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem/shape/object/property/uuid", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem/shape/object/property/token", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem/shape/object/property/thumbnails_group_uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponse/shape/object/property/problems", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponse/shape/object/property/result", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseStatus/shape/enum/value/pending", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseStatus/shape/enum/value/processing", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseStatus/shape/enum/value/finished", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseStatus/shape/enum/value/failed", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseStatus/shape/enum/value/cancelled", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseStatus/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseResult/shape/object/property/uuid", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseResult/shape/object/property/thumbnails_group_uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseResult/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseResult/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseResult", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponse/shape/object/property/status", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponse/shape/object/property/error", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponse/shape/object/property/result", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatusStatus/shape/enum/value/in_progress", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatusStatus/shape/enum/value/error", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatusStatus/shape/enum/value/done", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatusStatus/shape/enum/value/unknown", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatusStatus/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatusStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatus/shape/object/property/status", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatus/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatus/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatus", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload/shape/object/property/initiator", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload/shape/object/property/hook", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload/shape/object/property/data", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload/shape/object/property/file", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayloadPreviousValues/shape/object/property/appdata", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayloadPreviousValues/shape/object/property/metadata", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayloadPreviousValues/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayloadPreviousValues/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayloadPreviousValues", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload/shape/object/property/initiator", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload/shape/object/property/hook", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload/shape/object/property/data", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload/shape/object/property/file", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload/shape/object/property/previous_values", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape/object/property/datetime_removed", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape/object/property/datetime_stored", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape/object/property/datetime_uploaded", @@ -518,6 +1073,9 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape/object/property/variations", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape/object/property/content_info", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape/object/property/metadata", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape/object/property/datetime_removed", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape/object/property/datetime_stored", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape/object/property/datetime_uploaded", @@ -533,12 +1091,25 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape/object/property/variations", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape/object/property/content_info", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape/object/property/metadata", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Metadata/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Metadata", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:MetadataItemValue/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:MetadataItemValue", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfoMime/shape/object/property/mime", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfoMime/shape/object/property/type", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfoMime/shape/object/property/subtype", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfoMime/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfoMime/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfoMime", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfo/shape/object/property/mime", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfo/shape/object/property/image", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfo/shape/object/property/video", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfo/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfo/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfo", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGB", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGBA", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode/shape/enum/value/RGBa", @@ -552,8 +1123,13 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode/shape/enum/value/YCbCr", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode/shape/enum/value/HSV", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode/shape/enum/value/LAB", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoGeoLocation/shape/object/property/latitude", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoGeoLocation/shape/object/property/longitude", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoGeoLocation/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoGeoLocation/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoGeoLocation", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape/object/property/color_mode", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape/object/property/orientation", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape/object/property/format", @@ -563,43 +1139,94 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape/object/property/geo_location", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape/object/property/datetime_original", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape/object/property/dpi", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem/shape/object/property/bitrate", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem/shape/object/property/codec", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem/shape/object/property/sample_rate", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem/shape/object/property/channels", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem/shape/object/property/height", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem/shape/object/property/width", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem/shape/object/property/frame_rate", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem/shape/object/property/bitrate", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem/shape/object/property/codec", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo/shape/object/property/duration", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo/shape/object/property/format", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo/shape/object/property/bitrate", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo/shape/object/property/audio", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo/shape/object/property/video", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CopiedFileUrl/shape/object/property/type", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CopiedFileUrl/shape/object/property/result", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CopiedFileUrl/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CopiedFileUrl/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CopiedFileUrl", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group/shape/object/property/id", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group/shape/object/property/datetime_created", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group/shape/object/property/files_count", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group/shape/object/property/cdn_url", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group/shape/object/property/url", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:GroupWithFiles/shape/object/property/files", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:GroupWithFiles/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:GroupWithFiles/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:GroupWithFiles", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ProjectCollaboratorsItem/shape/object/property/email", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ProjectCollaboratorsItem/shape/object/property/name", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ProjectCollaboratorsItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ProjectCollaboratorsItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ProjectCollaboratorsItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project/shape/object/property/collaborators", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project/shape/object/property/name", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project/shape/object/property/pub_key", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project/shape/object/property/autostore_enabled", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookId/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookId", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookProject/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookProject", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookProjectPubkey/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookProjectPubkey", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookCreated/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookCreated", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookUpdated/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookUpdated", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTarget/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTarget", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookEvent/shape/enum/value/file.uploaded", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookEvent/shape/enum/value/file.infected", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookEvent/shape/enum/value/file.stored", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookEvent/shape/enum/value/file.deleted", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookEvent/shape/enum/value/file.info_updated", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookEvent/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookEvent", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookIsActive/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookIsActive", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookSigningSecret/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookSigningSecret", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersion/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersion", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfRequest/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfRequest", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfListResponse/shape/enum/value/", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfListResponse/shape/enum/value/0.5", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfListResponse/shape/enum/value/0.6", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfListResponse/shape/enum/value/0.7", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfListResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfListResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape/object/property/id", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape/object/property/project", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape/object/property/created", @@ -609,6 +1236,9 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape/object/property/is_active", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape/object/property/version", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape/object/property/signing_secret", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape/object/property/id", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape/object/property/project", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape/object/property/created", @@ -618,20 +1248,33 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape/object/property/is_active", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape/object/property/version", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape/object/property/signing_secret", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorType/shape/enum/value/api", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorType/shape/enum/value/system", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorType/shape/enum/value/addon", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorType/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorType", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName/shape/enum/value/aws_rekognition_detect_labels", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName/shape/enum/value/aws_rekognition_detect_moderation_labels", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName/shape/enum/value/uc_clamav_virus_scan", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName/shape/enum/value/remove_bg", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName/shape/enum/value/zamzar_convert_document", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName/shape/enum/value/zencoder_convert_video", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetail/shape/object/property/request_id", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetail/shape/object/property/addon_name", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetail/shape/object/property/source_file_uuid", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetail/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetail/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetail", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiator/shape/object/property/type", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiator/shape/object/property/detail", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiator/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiator/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiator", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape/object/property/id", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape/object/property/project", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape/object/property/project_pub_key", @@ -641,775 +1284,132 @@ "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape/object/property/target", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape/object/property/is_active", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape/object/property/version", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseDocsConversionError/shape/object/property/detail", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseDocsConversionError/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseDocsConversionError/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseDocsConversionError", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseVideoConversionError/shape/object/property/detail", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseVideoConversionError/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseVideoConversionError/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseVideoConversionError", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseWebhooksError/shape/object/property/detail", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseWebhooksError/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseWebhooksError/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseWebhooksError", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:JsonObjectParseError/shape/object/property/detail", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:JsonObjectParseError/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:JsonObjectParseError/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:JsonObjectParseError", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:LocalCopyResponse/shape/object/property/type", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:LocalCopyResponse/shape/object/property/result", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:LocalCopyResponse/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:LocalCopyResponse/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:LocalCopyResponse", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData/shape/object/property/version", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData/shape/object/property/datetime_created", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData/shape/object/property/datetime_updated", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData/shape/object/property/data", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10Data/shape/object/property/foreground_type", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10Data/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10Data/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10Data", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10/shape/object/property/version", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10/shape/object/property/data", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10/shape/object/property/datetime_created", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10/shape/object/property/datetime_updated", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox/shape/object/property/Height", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox/shape/object/property/Left", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox/shape/object/property/Top", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox/shape/object/property/Width", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItem/shape/object/property/BoundingBox", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItem/shape/object/property/Confidence", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemParentsItem/shape/object/property/Name", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemParentsItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemParentsItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemParentsItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem/shape/object/property/Confidence", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem/shape/object/property/Instances", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem/shape/object/property/Name", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem/shape/object/property/Parents", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627Data/shape/object/property/LabelModelVersion", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627Data/shape/object/property/Labels", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627Data/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627Data/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627Data", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627/shape/object/property/version", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627/shape/object/property/data", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627/shape/object/property/datetime_created", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627/shape/object/property/datetime_updated", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627DataModerationLabelsItem/shape/object/property/Confidence", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627DataModerationLabelsItem/shape/object/property/Name", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627DataModerationLabelsItem/shape/object/property/ParentName", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627DataModerationLabelsItem/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627DataModerationLabelsItem/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627DataModerationLabelsItem", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627Data/shape/object/property/ModerationModelVersion", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627Data/shape/object/property/ModerationLabels", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627Data/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627Data/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627Data", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627/shape/object/property/version", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627/shape/object/property/data", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627/shape/object/property/datetime_created", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627/shape/object/property/datetime_updated", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanVersion/shape/enum/value/0.104.2", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanVersion/shape/enum/value/0.104.3", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanVersion/shape/enum/value/0.105.0", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanVersion/shape/enum/value/0.105.1", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanVersion/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanVersion", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanData/shape/object/property/infected", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanData/shape/object/property/infected_with", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanData/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanData/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanData", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan/shape/object/property/version", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan/shape/object/property/data", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan/shape/object/property/datetime_created", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan/shape/object/property/datetime_updated", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject/shape/object/property/aws_rekognition_detect_labels", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject/shape/object/property/aws_rekognition_detect_moderation_labels", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject/shape/object/property/remove_bg", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject/shape/object/property/uc_clamav_virus_scan", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:SimpleAuthHttpForbidden/shape/object/property/detail", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:SimpleAuthHttpForbidden/shape/object", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:SimpleAuthHttpForbidden/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:SimpleAuthHttpForbidden", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTargetUrlError/shape/object/property/detail", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/2/404/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/2/404/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/2/404/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/2/409/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/2/409/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/2/409/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/2/409/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/2/404/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/2/404/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/0/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/1/404/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/2/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/2/404/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/4/503/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/2/404/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/4/503/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/response", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/0/400/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/1/401/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/2/404/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/3/429/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/4/503/error/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Metadata/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:MetadataItemValue/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookId/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookProject/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookProjectPubkey/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookCreated/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookUpdated/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTarget/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookIsActive/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookSigningSecret/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersion/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfRequest/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/request/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/request/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/request/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/request/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/request/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/request/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/request/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/request/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponseTotals/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesStoringResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesDeleteResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecuteResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecuteResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteRequestParams/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponseResult/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormatConversionFormatsItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormat/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseConvertedGroups/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponseResultItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseResult/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseResult/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatus/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayloadPreviousValues/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfoMime/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfo/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoGeoLocation/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CopiedFileUrl/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:GroupWithFiles/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ProjectCollaboratorsItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetail/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiator/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseDocsConversionError/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseVideoConversionError/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseWebhooksError/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:JsonObjectParseError/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:LocalCopyResponse/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10Data/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemParentsItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627Data/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627DataModerationLabelsItem/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627Data/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanData/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:SimpleAuthHttpForbidden/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTargetUrlError/shape/object", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListRequestOrdering/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateLocalCopyRequestStore/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponseStatus/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponseStatus/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponseStatus/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsTypeLevel/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsType/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsChannels/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListRequestOrdering/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersStore/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersSaveInGroup/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseStatus/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoJobSubmitParametersStore/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseStatus/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatusStatus/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Metadata", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:MetadataItemValue", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookId", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookProject", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookProjectPubkey", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookCreated", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookUpdated", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTarget", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookEvent/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookIsActive", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookSigningSecret", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersion", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfRequest", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfListResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorType/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanVersion/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/2/404", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/2/404", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/2/404", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/2/409", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/2/409", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/2/409", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/2/409", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/2/404", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/2/404", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/0/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/1/404", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/error/2/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/2/404", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/error/4/503", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo/example/5", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/2/404", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/error/4/503", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus/example/5", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/0/400", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/1/401", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/2/404", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/3/429", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/error/4/503", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/0", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/1", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/2", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/3", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/4", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus/example/5", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert/request", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListRequestOrdering", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponseTotals/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesStoringResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesDeleteResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateLocalCopyRequestStore", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:CreateRemoteCopyRequestPattern", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecuteResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponseStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecuteResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponseStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteRequestParams/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponseStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsTypeLevel", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsType", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParamsChannels", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponseResult/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListRequestOrdering", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormatConversionFormatsItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormat/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseConvertedGroups/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersStore", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentJobSubmitParametersSaveInGroup", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponseResultItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseResult/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoJobSubmitParametersStore", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseResult/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatusStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatus/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayloadPreviousValues/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfoMime/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfo/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoColorMode", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoGeoLocation/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CopiedFileUrl/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:GroupWithFiles/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ProjectCollaboratorsItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookEvent", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookVersionOfListResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorType", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetailAddonName", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetail/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiator/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseDocsConversionError/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseVideoConversionError/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseWebhooksError/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:JsonObjectParseError/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:LocalCopyResponse/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10Data/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemParentsItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627Data/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627DataModerationLabelsItem/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627Data/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanVersion", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanData/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:SimpleAuthHttpForbidden/shape", + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTargetUrlError/shape/object", "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTargetUrlError/shape", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponseTotals", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesListResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesStoringResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_file:FilesDeleteResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecuteResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionExecutionStatusResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecuteResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:AwsRekognitionDetectModerationLabelsExecutionStatusResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteRequestParams", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecuteResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:UcClamavVirusScanExecutionStatusResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteRequestParams", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecuteResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponseResult", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_addOns:RemoveBgExecutionStatusResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_group:GroupsListResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormatConversionFormatsItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseFormat", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponseConvertedGroups", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertInfoResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponseResultItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponseResult", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:DocumentConvertStatusResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponseResultItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponseResult", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_conversion:VideoConvertStatusResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AddonExecutionStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFilePayload", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayloadPreviousValues", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookFileInfoUpdatedPayload", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:FileCopy", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:File", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfoMime", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ContentInfo", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfoGeoLocation", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ImageInfo", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoAudioItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfoVideoItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:VideoInfo", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CopiedFileUrl", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Group", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:GroupWithFiles", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ProjectCollaboratorsItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Project", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:Webhook", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookOfListResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiatorDetail", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookInitiator", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookPublicInfo", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseDocsConversionError", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseVideoConversionError", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:CantUseWebhooksError", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:JsonObjectParseError", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:LocalCopyResponse", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationData", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10Data", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:RemoveBgV10", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItemBoundingBox", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemInstancesItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItemParentsItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627DataLabelsItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627Data", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectLabelsV20160627", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627DataModerationLabelsItem", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627Data", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:AwsRekognitionDetectModerationLabelsV20160627", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScanData", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:UcClamavVirusScan", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:ApplicationDataObject", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:SimpleAuthHttpForbidden", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTargetUrlError", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/__package__.File metadata", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesList", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.storeFile", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.deleteFileStorage", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.info", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesStoring", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.filesDelete", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createLocalCopy", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_file.createRemoteCopy", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecute", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionExecutionStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecute", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.awsRekognitionDetectModerationLabelsExecutionStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecute", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.ucClamavVirusScanExecutionStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecute", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_addOns.removeBgExecutionStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.key", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.updateFileMetadataKey", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_fileMetadata.deleteFileMetadataKey", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.groupsList", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.info", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_group.deleteGroup", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_project.info", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.webhooksList", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.create", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.updateWebhook", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_webhook.unsubscribe", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertInfo", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvert", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.documentConvertStatus", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvert", - "fb019a78-a773-4315-9c7b-6dcb585d6b30/endpoint/subpackage_conversion.videoConvertStatus" + "fb019a78-a773-4315-9c7b-6dcb585d6b30/type-definition/type_:WebhookTargetUrlError" ] \ No newline at end of file diff --git a/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitions.json b/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitions.json index b57ef26478..e6b15bd09f 100644 --- a/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitions.json +++ b/packages/fdr-sdk/src/__test__/output/uploadcare/apiDefinitions.json @@ -57,6 +57,7 @@ }, "errors": [ { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -186,6 +187,7 @@ }, "errors": [ { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -791,6 +793,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -800,6 +803,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -809,6 +813,7 @@ } }, { + "name": "Payload Too Large", "statusCode": 413, "shape": { "type": "alias", @@ -818,6 +823,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -1186,6 +1192,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -1195,6 +1202,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -1204,6 +1212,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -1503,6 +1512,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -1512,6 +1522,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -1521,6 +1532,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -1968,6 +1980,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -1977,6 +1990,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -1986,6 +2000,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -2207,6 +2222,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -2370,6 +2386,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -2379,6 +2396,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -2388,6 +2406,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -2740,6 +2759,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -2749,6 +2769,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -3023,6 +3044,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -3032,6 +3054,7 @@ } }, { + "name": "Forbidden", "statusCode": 403, "shape": { "type": "alias", @@ -3041,6 +3064,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6186,6 +6210,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6195,6 +6220,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6482,6 +6508,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6491,6 +6518,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6500,6 +6528,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -6899,6 +6928,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -6908,6 +6938,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -6917,6 +6948,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -6926,6 +6958,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -7337,6 +7370,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -7346,6 +7380,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7355,6 +7390,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -7364,6 +7400,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -7737,6 +7774,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -7746,6 +7784,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -7755,6 +7794,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -7764,6 +7804,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -8123,6 +8164,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -8132,6 +8174,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -8141,6 +8184,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -8542,6 +8586,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -8551,6 +8596,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -8560,6 +8606,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -9013,6 +9060,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -9022,6 +9070,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -9031,6 +9080,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -9340,6 +9390,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -9349,6 +9400,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -9358,6 +9410,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -9599,6 +9652,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -9608,6 +9662,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -9617,6 +9672,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -9626,6 +9682,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -9876,6 +9933,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -9885,6 +9943,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -10070,6 +10129,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -10079,6 +10139,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -10088,6 +10149,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -10097,6 +10159,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -10339,6 +10402,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -10348,6 +10412,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -10542,6 +10607,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -10551,6 +10617,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -10560,6 +10627,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -10569,6 +10637,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -10830,6 +10899,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -10839,6 +10909,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -11049,6 +11120,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -11058,6 +11130,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -11067,6 +11140,7 @@ } }, { + "name": "Conflict", "statusCode": 409, "shape": { "type": "alias", @@ -11076,6 +11150,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -11332,6 +11407,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -11341,6 +11417,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -11547,6 +11624,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -11556,6 +11634,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -11780,6 +11859,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -11789,6 +11869,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -12003,6 +12084,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -12012,6 +12094,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -12237,6 +12320,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -12246,6 +12330,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -12255,6 +12340,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -12487,6 +12573,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -12496,6 +12583,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -12505,6 +12593,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -12514,6 +12603,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -12755,6 +12845,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -12764,6 +12855,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -12773,6 +12865,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -12782,6 +12875,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -12999,6 +13093,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -13008,6 +13103,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -13017,6 +13113,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -13212,6 +13309,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -13221,6 +13319,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -13230,6 +13329,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -13429,6 +13529,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -13438,6 +13539,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -13447,6 +13549,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -13663,6 +13766,7 @@ }, "errors": [ { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -13672,6 +13776,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -13681,6 +13786,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -13876,6 +13982,7 @@ ], "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -13885,6 +13992,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -13894,6 +14002,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -14096,6 +14205,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -14105,6 +14215,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -14114,6 +14225,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -14123,6 +14235,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -14132,6 +14245,7 @@ } }, { + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -14415,6 +14529,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -14424,6 +14539,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -14634,6 +14750,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -14643,6 +14760,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -14652,6 +14770,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -14661,6 +14780,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -14670,6 +14790,7 @@ } }, { + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", @@ -14974,6 +15095,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -14983,6 +15105,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -15194,6 +15317,7 @@ }, "errors": [ { + "name": "Bad Request", "statusCode": 400, "shape": { "type": "alias", @@ -15203,6 +15327,7 @@ } }, { + "name": "Unauthorized", "statusCode": 401, "shape": { "type": "alias", @@ -15212,6 +15337,7 @@ } }, { + "name": "Not Found", "statusCode": 404, "shape": { "type": "alias", @@ -15221,6 +15347,7 @@ } }, { + "name": "Too Many Requests", "statusCode": 429, "shape": { "type": "alias", @@ -15230,6 +15357,7 @@ } }, { + "name": "Service Unavailable", "statusCode": 503, "shape": { "type": "alias", diff --git a/packages/fdr-sdk/src/api-definition/__test__/unwrap.test.ts b/packages/fdr-sdk/src/api-definition/__test__/unwrap.test.ts index d705683298..1f0d742bd5 100644 --- a/packages/fdr-sdk/src/api-definition/__test__/unwrap.test.ts +++ b/packages/fdr-sdk/src/api-definition/__test__/unwrap.test.ts @@ -18,13 +18,27 @@ const PRIMITIVE_SHAPE: TypeShape = { describe("unwrapReference", () => { it("should noop for a non-reference", () => { - expect(unwrapReference(PRIMITIVE_SHAPE["value"], {})).toStrictEqual({ - shape: PRIMITIVE_SHAPE["value"], - availability: undefined, - descriptions: [], - isOptional: false, - default: undefined, - }); + expect(unwrapReference(PRIMITIVE_SHAPE["value"], {})).toMatchInlineSnapshot( + ` + { + "availability": undefined, + "default": undefined, + "descriptions": [], + "isOptional": false, + "shape": { + "type": "primitive", + "value": { + "default": undefined, + "maxLength": undefined, + "minLength": undefined, + "regex": undefined, + "type": "string", + }, + }, + "visitedTypeIds": Set {}, + } + `, + ); }); it("should unwrap a reference", () => { @@ -41,13 +55,29 @@ describe("unwrapReference", () => { availability: undefined, }, }; - expect(unwrapReference(shape, types)).toStrictEqual({ - shape: PRIMITIVE_SHAPE["value"], - availability: undefined, - descriptions: [], - isOptional: false, - default: undefined, - }); + expect(unwrapReference(shape, types)).toMatchInlineSnapshot( + ` + { + "availability": undefined, + "default": undefined, + "descriptions": [], + "isOptional": false, + "shape": { + "type": "primitive", + "value": { + "default": undefined, + "maxLength": undefined, + "minLength": undefined, + "regex": undefined, + "type": "string", + }, + }, + "visitedTypeIds": Set { + "foo", + }, + } + `, + ); }); it("should unwrap to unknown", () => { @@ -56,16 +86,21 @@ describe("unwrapReference", () => { id: TypeId("foo"), default: undefined, }; - expect(unwrapReference(shape, {})).toStrictEqual({ - shape: { - type: "unknown", - displayName: undefined, + expect(unwrapReference(shape, {})).toMatchInlineSnapshot(` + { + "availability": undefined, + "default": undefined, + "descriptions": [], + "isOptional": false, + "shape": { + "displayName": undefined, + "type": "unknown", }, - availability: undefined, - descriptions: [], - isOptional: false, - default: undefined, - }); + "visitedTypeIds": Set { + "foo", + }, + } + `); }); it("should unwrap optionals", () => { @@ -89,13 +124,29 @@ describe("unwrapReference", () => { availability: undefined, }, }; - expect(unwrapReference(shape, types)).toStrictEqual({ - shape: PRIMITIVE_SHAPE["value"], - availability: undefined, - descriptions: [], - isOptional: true, - default: undefined, - }); + expect(unwrapReference(shape, types)).toMatchInlineSnapshot( + ` + { + "availability": undefined, + "default": undefined, + "descriptions": [], + "isOptional": true, + "shape": { + "type": "primitive", + "value": { + "default": undefined, + "maxLength": undefined, + "minLength": undefined, + "regex": undefined, + "type": "string", + }, + }, + "visitedTypeIds": Set { + "foo", + }, + } + `, + ); }); it("should unwrap optionals with defaults", () => { @@ -500,4 +551,29 @@ describe("unwrapObjectType", () => { expect(unwrapped.descriptions).toStrictEqual(["description-1", "description-2"]); }); + + it("should gracefully handle circular reference", () => { + const unwrapped = unwrapObjectType( + { + extends: [TypeId("id")], + properties: [], + extraProperties: undefined, + }, + { + [TypeId("id")]: { + name: "test", + shape: { + type: "object", + extends: [TypeId("id")], + properties: [], + extraProperties: undefined, + }, + description: undefined, + availability: undefined, + }, + }, + ); + + expect(unwrapped.properties.length).toBe(0); + }); }); diff --git a/packages/fdr-sdk/src/api-definition/availability.ts b/packages/fdr-sdk/src/api-definition/availability.ts index 681143b254..201c2ad107 100644 --- a/packages/fdr-sdk/src/api-definition/availability.ts +++ b/packages/fdr-sdk/src/api-definition/availability.ts @@ -18,7 +18,9 @@ export const AvailabilityOrder = [ * @param availabilities an array of availability levels * @returns the **least** stable availability level from the input array */ -export function coalesceAvailability(availabilities: Latest.Availability[]): Latest.Availability | undefined { +export function coalesceAvailability( + availabilities: (Latest.Availability | undefined)[], +): Latest.Availability | undefined { for (const availability of [...AvailabilityOrder].reverse()) { if (availabilities.includes(availability)) { return availability; diff --git a/packages/fdr-sdk/src/api-definition/collect-type-tree.ts b/packages/fdr-sdk/src/api-definition/collect-type-tree.ts new file mode 100644 index 0000000000..6d39bcb108 --- /dev/null +++ b/packages/fdr-sdk/src/api-definition/collect-type-tree.ts @@ -0,0 +1,233 @@ +import type { MarkdownText } from "../docs"; +import type { Availability, TypeId } from "../navigation"; +import { coalesceAvailability } from "./availability"; +import { LARGE_LOOP_TOLERANCE } from "./const"; +import type { ObjectProperty, TypeDefinition } from "./latest"; +import type { TypeShapeOrReference } from "./types"; +import { unwrapObjectType, unwrapReference } from "./unwrap"; + +/** + * A path through the type tree, used to identify a type definition. + * + * i.e. it may be represented as a jq: + * + * - a.b.c.d + * - a[].b.c + * - a.b[key].c + * + * We collect the true shape of the path here so that the frontend can determine how to render it. + */ +export type KeyPathItem = + | { type: "objectProperty"; key: string } + | { type: "undiscriminatedUnionVariant"; displayName: string | undefined; idx: number } + | { + type: "discriminatedUnionVariant"; + discriminant: string; + discriminantDisplayName: string | undefined; + discriminantValue: string; + } + | { type: "list" | "set" | "mapValue" | "extra" } + | { type: "enumValue"; value: string } + // "meta" is not part of the key path, but is meant for parents to describe itself, i.e. "request" or "header" + | { type: "meta"; value: string; displayName: string | undefined }; + +export interface TypeDefinitionTreeItem { + /** + * The path to the type definition + */ + path: KeyPathItem[]; + descriptions: MarkdownText[]; + availability: Availability | undefined; +} + +interface CollectTypeDefinitionTreeOptions { + path?: KeyPathItem[]; + availability?: Availability; + maxDepth?: number; +} + +/** + * This function is intended to be used to generate a tree of all type definitions, and is intended to be used + * for indexing the type tree and their descriptions into algolia. + */ +export function collectTypeDefinitionTree( + type: TypeShapeOrReference, + types: Record, + { availability: rootAvailability, maxDepth = 5, path: rootpath = [] }: CollectTypeDefinitionTreeOptions = {}, +): TypeDefinitionTreeItem[] { + const toRet: TypeDefinitionTreeItem[] = []; + + const stack: { + type: TypeShapeOrReference; + path: KeyPathItem[]; + descriptions: MarkdownText[]; + availability: Availability | undefined; + visitedTypeIds: Set; + }[] = [ + { + type, + path: rootpath, + availability: rootAvailability, + descriptions: [], + visitedTypeIds: new Set(), + }, + ]; + + let loop = 0; + while (stack.length > 0) { + if (loop++ > LARGE_LOOP_TOLERANCE) { + // eslint-disable-next-line no-console + console.error("Infinite loop detected when traversing type definitions"); + break; + } + + const { + type: last, + path: parentpath, + descriptions: parentDescriptions, + visitedTypeIds: parentVisitedTypeIds, + availability: parentAvailability, + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + } = stack.pop()!; + + if (parentpath.length > maxDepth) { + continue; + } + + const unwrapped = unwrapReference(last, types); + + // the child's availability must be the least stable availability of the parent and the child + const availability = coalesceAvailability([parentAvailability, unwrapped.availability]); + const descriptions = [...parentDescriptions, ...unwrapped.descriptions]; + + // check if this reference has been unwrapped already by its parents + let circularReferenceDetected = false; + unwrapped.visitedTypeIds.forEach((typeId) => { + if (parentVisitedTypeIds.has(typeId)) { + circularReferenceDetected = true; + } + }); + + if (circularReferenceDetected) { + continue; + } + + const visitedTypeIds = new Set([...parentVisitedTypeIds, ...unwrapped.visitedTypeIds]); + + if (unwrapped.shape.type === "object") { + const obj = unwrapObjectType(unwrapped.shape, types); + descriptions.push(...obj.descriptions); + + obj.visitedTypeIds.forEach((typeId) => visitedTypeIds.add(typeId)); + + obj.properties.forEach((property) => { + stack.push({ + type: property.valueShape, + path: [...parentpath, { type: "objectProperty", key: property.key }], + descriptions: property.description ? [property.description] : [], + visitedTypeIds, + availability, + }); + }); + + if (obj.extraProperties) { + stack.push({ + type: obj.extraProperties, + path: [...parentpath, { type: "extra" }], + descriptions: [], + visitedTypeIds, + availability, + }); + } + } + + toRet.push({ + path: parentpath, + descriptions, + availability, + }); + + if (unwrapped.shape.type === "undiscriminatedUnion") { + unwrapped.shape.variants.forEach((variant, idx) => { + stack.push({ + type: variant.shape, + path: [ + ...parentpath, + { type: "undiscriminatedUnionVariant", displayName: variant.displayName, idx }, + ], + descriptions: variant.description ? [variant.description] : [], + visitedTypeIds, + availability: coalesceAvailability([availability, variant.availability]), + }); + }); + } else if (unwrapped.shape.type === "discriminatedUnion") { + const discriminant = unwrapped.shape.discriminant; + + unwrapped.shape.variants.forEach((variant) => { + const path: KeyPathItem[] = [ + ...parentpath, + { + type: "discriminatedUnionVariant", + discriminant, + discriminantDisplayName: variant.displayName, + discriminantValue: variant.discriminantValue, + }, + ]; + stack.push({ + type: { ...variant, type: "object" }, + path, + descriptions: variant.description ? [variant.description] : [], + visitedTypeIds, + availability: coalesceAvailability([availability, variant.availability]), + }); + }); + } else if (unwrapped.shape.type === "list" || unwrapped.shape.type === "set") { + stack.push({ + type: unwrapped.shape.itemShape, + path: [...parentpath, { type: unwrapped.shape.type }], + descriptions, + visitedTypeIds, + availability, + }); + } else if (unwrapped.shape.type === "map") { + stack.push({ + type: unwrapped.shape.valueShape, + path: [...parentpath, { type: "mapValue" }], + // we don't need to add the descriptions of the key shape here, but the descriptions from the key are appended here: + descriptions: [...descriptions, ...unwrapReference(unwrapped.shape.keyShape, types).descriptions], + visitedTypeIds, + availability, + }); + } else if (unwrapped.shape.type === "enum") { + unwrapped.shape.values.forEach((value) => { + toRet.push({ + path: [...parentpath, { type: "enumValue", value: value.value }], + descriptions: value.description ? [value.description] : [], + availability, + }); + }); + } + } + + return toRet; +} + +export function collectTypeDefinitionTreeForObjectProperty( + property: ObjectProperty, + types: Record, + rootPath: KeyPathItem[] = [], + maxDepth = 5, +): TypeDefinitionTreeItem[] { + return [ + { + path: [...rootPath, { type: "objectProperty", key: property.key }], + descriptions: property.description ? [property.description] : [], + availability: property.availability, + }, + ...collectTypeDefinitionTree(property.valueShape, types, { + maxDepth: maxDepth - 1, + availability: property.availability, + path: [...rootPath, { type: "objectProperty", key: property.key }], + }), + ]; +} diff --git a/packages/fdr-sdk/src/api-definition/endpoint-visitor.ts b/packages/fdr-sdk/src/api-definition/endpoint-visitor.ts new file mode 100644 index 0000000000..9744baa8e2 --- /dev/null +++ b/packages/fdr-sdk/src/api-definition/endpoint-visitor.ts @@ -0,0 +1,86 @@ +import * as Latest from "./latest"; +import { Transformer } from "./transformer"; + +interface EndpointDefinitionVisitor { + EndpointDefinition: (endpoint: Latest.EndpointDefinition) => void; + HttpRequest: (request: Latest.HttpRequest) => void; + HttpResponse: (response: Latest.HttpResponse) => void; + ErrorResponse: (error: Latest.ErrorResponse) => void; + ExampleEndpointCall: (example: Latest.ExampleEndpointCall) => void; + CodeSnippet: (snippet: Latest.CodeSnippet) => void; + ErrorExample: (error: Latest.ErrorExample) => void; +} + +export function visitEndpointDefinition(endpoint: Latest.EndpointDefinition, visitor: EndpointDefinitionVisitor): void { + Transformer.with({ + EndpointDefinition: (endpoint) => { + visitor.EndpointDefinition(endpoint); + return endpoint; + }, + HttpRequest: (request) => { + visitor.HttpRequest(request); + return request; + }, + HttpResponse: (response) => { + visitor.HttpResponse(response); + return response; + }, + ErrorResponse: (error) => { + visitor.ErrorResponse(error); + return error; + }, + ExampleEndpointCall: (example) => { + visitor.ExampleEndpointCall(example); + return example; + }, + CodeSnippet: (snippet) => { + visitor.CodeSnippet(snippet); + return snippet; + }, + ErrorExample: (error) => { + visitor.ErrorExample(error); + return error; + }, + }).endpoint(endpoint, ""); +} + +interface WebhookDefinitionVisitor { + WebhookDefinition: (webhook: Latest.WebhookDefinition) => void; + WebhookPayload: (payload: Latest.WebhookPayload) => void; +} + +export function visitWebhookDefinition(webhook: Latest.WebhookDefinition, visitor: WebhookDefinitionVisitor): void { + Transformer.with({ + WebhookDefinition: (webhook) => { + visitor.WebhookDefinition(webhook); + return webhook; + }, + WebhookPayload: (payload) => { + visitor.WebhookPayload(payload); + return payload; + }, + }).webhookDefinition(webhook, ""); +} + +interface WebSocketChannelVisitor { + WebSocketChannel: (channel: Latest.WebSocketChannel) => void; + WebSocketMessage: (message: Latest.WebSocketMessage) => void; + ExampleWebSocketSession: (session: Latest.ExampleWebSocketSession) => void; +} + +export function visitWebSocketChannel(channel: Latest.WebSocketChannel, visitor: WebSocketChannelVisitor): void { + Transformer.with({ + WebSocketChannel: (channel) => { + visitor.WebSocketChannel(channel); + return channel; + }, + WebSocketMessage: (message) => { + visitor.WebSocketMessage(message); + return message; + }, + ExampleWebSocketSession: (session) => { + visitor.ExampleWebSocketSession(session); + return session; + }, + }).webSocketChannel(channel, ""); +} diff --git a/packages/fdr-sdk/src/api-definition/index.ts b/packages/fdr-sdk/src/api-definition/index.ts index 2f75432ce6..8a46819254 100644 --- a/packages/fdr-sdk/src/api-definition/index.ts +++ b/packages/fdr-sdk/src/api-definition/index.ts @@ -1,3 +1,4 @@ +export * from "./collect-type-tree"; export * from "./endpoint-context"; export * from "./endpoint-path-literal"; export * from "./join"; @@ -7,6 +8,7 @@ export * from "./migrators/v1ToV2"; export * from "./prune"; export * from "./snippets/SnippetHttpRequest"; export * from "./snippets/curl"; +export * from "./status-message"; export * from "./transformer"; export * from "./types"; export * from "./unwrap"; diff --git a/packages/fdr-sdk/src/api-definition/migrators/v1ToV2.ts b/packages/fdr-sdk/src/api-definition/migrators/v1ToV2.ts index 5e88eff6ef..7231c8c301 100644 --- a/packages/fdr-sdk/src/api-definition/migrators/v1ToV2.ts +++ b/packages/fdr-sdk/src/api-definition/migrators/v1ToV2.ts @@ -1,5 +1,6 @@ +import titleCase from "@fern-api/ui-core-utils/titleCase"; import visitDiscriminatedUnion from "@fern-api/ui-core-utils/visitDiscriminatedUnion"; -import mapValues from "lodash-es/mapValues"; +import { mapValues } from "es-toolkit/object"; import { APIV1Read } from "../../client"; import { SupportedLanguage } from "../../client/generated/api/resources/api/resources/v1/resources/read/resources/endpoint/types/SupportedLanguage"; import { ROOT_PACKAGE_ID } from "../../navigation/consts"; @@ -9,6 +10,7 @@ import * as V2 from "../latest"; import { toSnippetHttpRequest } from "../snippets/SnippetHttpRequest"; import { convertToCurl } from "../snippets/curl"; import { sortKeysByShape } from "../sort-keys"; +import { getMessageForStatus } from "../status-message"; interface Flags { /** @@ -480,7 +482,7 @@ export class ApiDefinitionV1ToLatest { return { description: value.description, availability: value.availability, - name: value.name, + name: (value.name != null ? titleCase(value.name) : undefined) ?? getMessageForStatus(value.statusCode), statusCode: value.statusCode, shape, examples: value.examples?.map( diff --git a/packages/fdr-sdk/src/api-definition/snippets/SnippetHttpRequest.ts b/packages/fdr-sdk/src/api-definition/snippets/SnippetHttpRequest.ts index 40a7256e8f..51379b3d89 100644 --- a/packages/fdr-sdk/src/api-definition/snippets/SnippetHttpRequest.ts +++ b/packages/fdr-sdk/src/api-definition/snippets/SnippetHttpRequest.ts @@ -1,5 +1,5 @@ import visitDiscriminatedUnion from "@fern-api/ui-core-utils/visitDiscriminatedUnion"; -import compact from "lodash-es/compact"; +import { compact } from "es-toolkit/array"; import { noop } from "ts-essentials"; import urljoin from "url-join"; import type * as Latest from "../latest"; diff --git a/packages/fdr-sdk/src/api-definition/sort-keys.ts b/packages/fdr-sdk/src/api-definition/sort-keys.ts index 0a0925bd4c..2913a9e79b 100644 --- a/packages/fdr-sdk/src/api-definition/sort-keys.ts +++ b/packages/fdr-sdk/src/api-definition/sort-keys.ts @@ -1,8 +1,7 @@ import isPlainObject from "@fern-api/ui-core-utils/isPlainObject"; import visitDiscriminatedUnion from "@fern-api/ui-core-utils/visitDiscriminatedUnion"; -import difference from "lodash-es/difference"; -import keyBy from "lodash-es/keyBy"; -import mapValues from "lodash-es/mapValues"; +import { difference, keyBy } from "es-toolkit/array"; +import { mapValues } from "es-toolkit/object"; import type * as Latest from "./latest"; import { TypeShapeOrReference } from "./types"; import { unwrapDiscriminatedUnionVariant, unwrapObjectType } from "./unwrap"; diff --git a/packages/ui/app/src/api-reference/utils/getMessageForStatus.ts b/packages/fdr-sdk/src/api-definition/status-message.ts similarity index 100% rename from packages/ui/app/src/api-reference/utils/getMessageForStatus.ts rename to packages/fdr-sdk/src/api-definition/status-message.ts diff --git a/packages/fdr-sdk/src/api-definition/transformer.ts b/packages/fdr-sdk/src/api-definition/transformer.ts index 6c14cd2710..36204b9b1d 100644 --- a/packages/fdr-sdk/src/api-definition/transformer.ts +++ b/packages/fdr-sdk/src/api-definition/transformer.ts @@ -1,53 +1,46 @@ import type * as FernDocs from "@fern-api/fdr-sdk/docs"; import identity from "@fern-api/ui-core-utils/identity"; import visitDiscriminatedUnion from "@fern-api/ui-core-utils/visitDiscriminatedUnion"; -import { AsyncOrSync } from "ts-essentials"; import * as Latest from "./latest"; /** * Visitor for API definitions. - * This is used to traverse the API definition and apply async functions to each node. + * This is used to traverse the API definition and apply functions to each node. */ export interface ApiDefinitionVisitor { // endpoints - EndpointDefinition(endpoint: Latest.EndpointDefinition, key: string): AsyncOrSync; - HttpRequest(request: Latest.HttpRequest, key: string): AsyncOrSync; - HttpResponse(response: Latest.HttpResponse, key: string): AsyncOrSync; - ErrorResponse(error: Latest.ErrorResponse, key: string): AsyncOrSync; - ExampleEndpointCall(example: Latest.ExampleEndpointCall, key: string): AsyncOrSync; - CodeSnippet(snippet: Latest.CodeSnippet, key: string): AsyncOrSync; - ErrorExample(error: Latest.ErrorExample, key: string): AsyncOrSync; + EndpointDefinition(endpoint: Latest.EndpointDefinition, key: string): Latest.EndpointDefinition; + HttpRequest(request: Latest.HttpRequest, key: string): Latest.HttpRequest; + HttpResponse(response: Latest.HttpResponse, key: string): Latest.HttpResponse; + ErrorResponse(error: Latest.ErrorResponse, key: string): Latest.ErrorResponse; + ExampleEndpointCall(example: Latest.ExampleEndpointCall, key: string): Latest.ExampleEndpointCall; + CodeSnippet(snippet: Latest.CodeSnippet, key: string): Latest.CodeSnippet; + ErrorExample(error: Latest.ErrorExample, key: string): Latest.ErrorExample; // webhooks - WebhookDefinition(webhook: Latest.WebhookDefinition, key: string): AsyncOrSync; - WebhookPayload(payload: Latest.WebhookPayload, key: string): AsyncOrSync; + WebhookDefinition(webhook: Latest.WebhookDefinition, key: string): Latest.WebhookDefinition; + WebhookPayload(payload: Latest.WebhookPayload, key: string): Latest.WebhookPayload; // websockets - WebSocketChannel(channel: Latest.WebSocketChannel, key: string): AsyncOrSync; - WebSocketMessage(message: Latest.WebSocketMessage, key: string): AsyncOrSync; - ExampleWebSocketSession( - session: Latest.ExampleWebSocketSession, - key: string, - ): AsyncOrSync; + WebSocketChannel(channel: Latest.WebSocketChannel, key: string): Latest.WebSocketChannel; + WebSocketMessage(message: Latest.WebSocketMessage, key: string): Latest.WebSocketMessage; + ExampleWebSocketSession(session: Latest.ExampleWebSocketSession, key: string): Latest.ExampleWebSocketSession; // types - TypeDefinition(type: Latest.TypeDefinition, key: string): AsyncOrSync; - TypeShape(shape: Latest.TypeShape, key: string): AsyncOrSync; - ObjectType(property: Latest.ObjectType, key: string): AsyncOrSync; - ObjectProperty(property: Latest.ObjectProperty, key: string): AsyncOrSync; - EnumValue(value: Latest.EnumValue, key: string): AsyncOrSync; + TypeDefinition(type: Latest.TypeDefinition, key: string): Latest.TypeDefinition; + TypeShape(shape: Latest.TypeShape, key: string): Latest.TypeShape; + ObjectType(property: Latest.ObjectType, key: string): Latest.ObjectType; + ObjectProperty(property: Latest.ObjectProperty, key: string): Latest.ObjectProperty; + EnumValue(value: Latest.EnumValue, key: string): Latest.EnumValue; UndiscriminatedUnionVariant( variant: Latest.UndiscriminatedUnionVariant, key: string, - ): AsyncOrSync; - DiscriminatedUnionVariant( - variant: Latest.DiscriminatedUnionVariant, - key: string, - ): AsyncOrSync; - FormDataRequest(request: Latest.FormDataRequest, key: string): AsyncOrSync; - FormDataField(field: Latest.FormDataField, key: string): AsyncOrSync; - FormDataFile(file: Latest.FormDataFile, key: string): AsyncOrSync; - FormDataFiles(files: Latest.FormDataFiles, key: string): AsyncOrSync; + ): Latest.UndiscriminatedUnionVariant; + DiscriminatedUnionVariant(variant: Latest.DiscriminatedUnionVariant, key: string): Latest.DiscriminatedUnionVariant; + FormDataRequest(request: Latest.FormDataRequest, key: string): Latest.FormDataRequest; + FormDataField(field: Latest.FormDataField, key: string): Latest.FormDataField; + FormDataFile(file: Latest.FormDataFile, key: string): Latest.FormDataFile; + FormDataFiles(files: Latest.FormDataFiles, key: string): Latest.FormDataFiles; } export class Transformer { @@ -80,14 +73,11 @@ export class Transformer { } public static descriptions( - transformer: (description: FernDocs.MarkdownText, key: string) => AsyncOrSync, + transformer: (description: FernDocs.MarkdownText, key: string) => FernDocs.MarkdownText, ): Transformer { - async function internalTransformer( - withDescription: T, - key: string, - ): Promise { + function internalTransformer(withDescription: T, key: string): T { const description = - withDescription.description != null ? await transformer(withDescription.description, key) : undefined; + withDescription.description != null ? transformer(withDescription.description, key) : undefined; return { ...withDescription, description }; } @@ -165,48 +155,31 @@ export class Transformer { * @param visitor the visitor to apply to the API definition * @returns the API definition with the visitor transformations applied */ - apiDefinition = async (api: Latest.ApiDefinition): Promise => { - const endpointsPromise = Promise.all( - Object.entries(api.endpoints).map(async ([id, endpoint]) => [ - id, - await this.visitor.EndpointDefinition(endpoint, `${api.id}/endpoint/${id}`), - ]), - ); + apiDefinition = (api: Latest.ApiDefinition): Latest.ApiDefinition => { + const endpoints = Object.entries(api.endpoints).map(([id, endpoint]) => [ + id, + this.visitor.EndpointDefinition(endpoint, `${api.id}/endpoint/${id}`), + ]); - const websocketsPromise = Promise.all( - Object.entries(api.websockets).map(async ([id, websocket]) => [ - id, - await this.visitor.WebSocketChannel(websocket, `${api.id}/websocket/${id}`), - ]), - ); + const websockets = Object.entries(api.websockets).map(([id, websocket]) => [ + id, + this.visitor.WebSocketChannel(websocket, `${api.id}/websocket/${id}`), + ]); - const webhooksPromise = Promise.all( - Object.entries(api.webhooks).map(async ([id, webhook]) => [ - id, - await this.visitor.WebhookDefinition(webhook, `${api.id}/webhoook/${id}`), - ]), - ); + const webhooks = Object.entries(api.webhooks).map(([id, webhook]) => [ + id, + this.visitor.WebhookDefinition(webhook, `${api.id}/webhoook/${id}`), + ]); - const typesPromise = Promise.all( - Object.entries(api.types).map(async ([id, type]) => [ - id, - await this.visitor.TypeDefinition(type, `${api.id}/type-definition/${id}`), - ]), - ); + const types = Object.entries(api.types).map(([id, type]) => [ + id, + this.visitor.TypeDefinition(type, `${api.id}/type-definition/${id}`), + ]); - const globalHeadersPromise = Promise.all( + const globalHeaders = api.globalHeaders?.map((header) => this.visitor.ObjectProperty(header, `${api.id}/global-headers/${header.key}`), - ) ?? [], - ); - - const [endpoints, websockets, webhooks, types, globalHeaders] = await Promise.all([ - endpointsPromise, - websocketsPromise, - webhooksPromise, - typesPromise, - globalHeadersPromise, - ]); + ) ?? []; return { id: api.id, @@ -239,82 +212,58 @@ export class Transformer { * The following types have nested types that need to be visited. */ - EndpointDefinition: async (endpoint, key) => - visitor.EndpointDefinition(await this.endpoint(endpoint, key), key), - HttpRequest: async (request, key) => visitor.HttpRequest(await this.httpRequest(request, key), key), - HttpResponse: async (response, key) => visitor.HttpResponse(await this.httpResponse(response, key), key), - ErrorResponse: async (error, key) => visitor.ErrorResponse(await this.errorResponse(error, key), key), - ExampleEndpointCall: async (example, key) => - visitor.ExampleEndpointCall(await this.exampleEndpointCall(example, key), key), - WebhookDefinition: async (webhook, key) => - visitor.WebhookDefinition(await this.webhookDefinition(webhook, key), key), - WebhookPayload: async (payload, key) => - visitor.WebhookPayload(await this.webhookPayload(payload, key), key), - WebSocketChannel: async (channel, key) => - visitor.WebSocketChannel(await this.webSocketChannel(channel, key), key), - WebSocketMessage: async (message, key) => - visitor.WebSocketMessage(await this.webSocketMessage(message, key), key), - TypeDefinition: async (type, key) => visitor.TypeDefinition(await this.typeDefinition(type, key), key), - TypeShape: async (shape, key) => visitor.TypeShape(await this.typeShape(shape, key), key), - ObjectType: async (type, key) => visitor.ObjectType(await this.objectType(type, key), key), - DiscriminatedUnionVariant: async (variant, key) => - visitor.DiscriminatedUnionVariant(await this.objectType(variant, key), key), - FormDataRequest: async (request, key) => - visitor.FormDataRequest(await this.formDataRequest(request, key), key), - FormDataField: async (field, key) => visitor.FormDataField(await this.formDataField(field, key), key), + EndpointDefinition: (endpoint, key) => visitor.EndpointDefinition(this.endpoint(endpoint, key), key), + HttpRequest: (request, key) => visitor.HttpRequest(this.httpRequest(request, key), key), + HttpResponse: (response, key) => visitor.HttpResponse(this.httpResponse(response, key), key), + ErrorResponse: (error, key) => visitor.ErrorResponse(this.errorResponse(error, key), key), + ExampleEndpointCall: (example, key) => + visitor.ExampleEndpointCall(this.exampleEndpointCall(example, key), key), + WebhookDefinition: (webhook, key) => visitor.WebhookDefinition(this.webhookDefinition(webhook, key), key), + WebhookPayload: (payload, key) => visitor.WebhookPayload(this.webhookPayload(payload, key), key), + WebSocketChannel: (channel, key) => visitor.WebSocketChannel(this.webSocketChannel(channel, key), key), + WebSocketMessage: (message, key) => visitor.WebSocketMessage(this.webSocketMessage(message, key), key), + TypeDefinition: (type, key) => visitor.TypeDefinition(this.typeDefinition(type, key), key), + TypeShape: (shape, key) => visitor.TypeShape(this.typeShape(shape, key), key), + ObjectType: (type, key) => visitor.ObjectType(this.objectType(type, key), key), + DiscriminatedUnionVariant: (variant, key) => + visitor.DiscriminatedUnionVariant(this.objectType(variant, key), key), + FormDataRequest: (request, key) => visitor.FormDataRequest(this.formDataRequest(request, key), key), + FormDataField: (field, key) => visitor.FormDataField(this.formDataField(field, key), key), }; return innerVisitor; }; - endpoint = async (endpoint: Latest.EndpointDefinition, parentKey: string): Promise => { - const pathParametersPromise = Promise.all( + endpoint = (endpoint: Latest.EndpointDefinition, parentKey: string): Latest.EndpointDefinition => { + const pathParameters = endpoint.pathParameters?.map((param) => this.visitor.ObjectProperty(param, `${parentKey}/path/${param.key}`), - ) ?? [], - ); - const queryParametersPromise = Promise.all( + ) ?? []; + const queryParameters = endpoint.queryParameters?.map((param) => this.visitor.ObjectProperty(param, `${parentKey}/query/${param.key}`), - ) ?? [], - ); - const requestHeadersPromise = Promise.all( + ) ?? []; + const requestHeaders = endpoint.requestHeaders?.map((param) => this.visitor.ObjectProperty(param, `${parentKey}/requestHeader/${param.key}`), - ) ?? [], - ); - const responseHeadersPromise = Promise.all( + ) ?? []; + const responseHeaders = endpoint.responseHeaders?.map((param) => this.visitor.ObjectProperty(param, `${parentKey}/responseHeader/${param.key}`), - ) ?? [], - ); - const requestPromise = endpoint.request + ) ?? []; + const request = endpoint.request ? this.visitor.HttpRequest(endpoint.request, `${parentKey}/request`) : undefined; - const responsePromise = endpoint.response + const response = endpoint.response ? this.visitor.HttpResponse(endpoint.response, `${parentKey}/response`) : undefined; - const errorsPromise = Promise.all( + const errors = endpoint.errors?.map((error, i) => this.visitor.ErrorResponse(error, `${parentKey}/error/${i}/${error.statusCode}`), - ) ?? [], - ); - const examplePromise = Promise.all( + ) ?? []; + const examples = endpoint.examples?.map((example, i) => this.visitor.ExampleEndpointCall(example, `${parentKey}/example/${i}`), - ) ?? [], - ); - - const [pathParameters, queryParameters, requestHeaders, responseHeaders, request, response, errors, examples] = - await Promise.all([ - pathParametersPromise, - queryParametersPromise, - requestHeadersPromise, - responseHeadersPromise, - requestPromise, - responsePromise, - errorsPromise, - examplePromise, - ]); + ) ?? []; return { ...endpoint, @@ -329,85 +278,76 @@ export class Transformer { }; }; - httpRequest = async (request: Latest.HttpRequest, parentKey: string): Promise => { - const bodyPromise = visitDiscriminatedUnion(request.body)._visit>({ - object: async (value) => ({ ...value, ...(await this.visitor.ObjectType(value, `${parentKey}/object`)) }), + httpRequest = (request: Latest.HttpRequest, parentKey: string): Latest.HttpRequest => { + const body = visitDiscriminatedUnion(request.body)._visit({ + object: (value) => ({ ...value, ...this.visitor.ObjectType(value, `${parentKey}/object`) }), alias: identity, bytes: identity, - formData: async (value) => ({ + formData: (value) => ({ ...value, - ...(await this.visitor.FormDataRequest(value, `${parentKey}/formdata`)), + ...this.visitor.FormDataRequest(value, `${parentKey}/formdata`), }), }); - return { ...request, body: await bodyPromise }; + return { ...request, body }; }; - formDataField = async (field: Latest.FormDataField, parentKey: string): Promise => { - return visitDiscriminatedUnion(field)._visit>({ - file: async (value) => ({ + formDataField = (field: Latest.FormDataField, parentKey: string): Latest.FormDataField => { + return visitDiscriminatedUnion(field)._visit({ + file: (value) => ({ ...value, - ...(await this.visitor.FormDataFile(value, `${parentKey}/file/${value.key}`)), + ...this.visitor.FormDataFile(value, `${parentKey}/file/${value.key}`), }), - files: async (value) => ({ + files: (value) => ({ ...value, - ...(await this.visitor.FormDataFiles(value, `${parentKey}/files/${value.key}`)), + ...this.visitor.FormDataFiles(value, `${parentKey}/files/${value.key}`), }), - property: async (value) => ({ + property: (value) => ({ ...value, - ...(await this.visitor.ObjectProperty(value, `${parentKey}/property/${value.key}`)), + ...this.visitor.ObjectProperty(value, `${parentKey}/property/${value.key}`), }), }); }; - httpResponse = async (response: Latest.HttpResponse, parentKey: string): Promise => { - const bodyPromise = visitDiscriminatedUnion(response.body)._visit>({ - object: async (value) => ({ ...value, ...(await this.visitor.ObjectType(value, `${parentKey}/object`)) }), + httpResponse = (response: Latest.HttpResponse, parentKey: string): Latest.HttpResponse => { + const body = visitDiscriminatedUnion(response.body)._visit({ + object: (value) => ({ ...value, ...this.visitor.ObjectType(value, `${parentKey}/object`) }), alias: identity, fileDownload: identity, streamingText: identity, - stream: async (value) => ({ + stream: (value) => ({ ...value, - shape: await this.visitor.TypeShape(value.shape, `${parentKey}/stream/shape`), + shape: this.visitor.TypeShape(value.shape, `${parentKey}/stream/shape`), }), }); - return { ...response, body: await bodyPromise }; + return { ...response, body }; }; - objectType = async (type: T, parentKey: string): Promise => { - const properties = await Promise.all( - type.properties.map((prop) => this.visitor.ObjectProperty(prop, `${parentKey}/property/${prop.key}`)), + objectType = (type: T, parentKey: string): T => { + const properties = type.properties.map((prop) => + this.visitor.ObjectProperty(prop, `${parentKey}/property/${prop.key}`), ); return { ...type, properties }; }; - errorResponse = async (error: Latest.ErrorResponse, parentKey: string): Promise => { - const shapePromise = error.shape ? this.visitor.TypeShape(error.shape, `${parentKey}/error/shape`) : undefined; - const examplesPromise = Promise.all( - error.examples?.map((example, i) => this.visitor.ErrorExample(example, `${parentKey}/example/${i}`)) ?? [], - ); - const [shape, examples] = await Promise.all([shapePromise, examplesPromise]); + errorResponse = (error: Latest.ErrorResponse, parentKey: string): Latest.ErrorResponse => { + const shape = error.shape ? this.visitor.TypeShape(error.shape, `${parentKey}/error/shape`) : undefined; + const examples = + error.examples?.map((example, i) => this.visitor.ErrorExample(example, `${parentKey}/example/${i}`)) ?? []; return { ...error, shape, examples: examples.length > 0 ? examples : undefined }; }; - exampleEndpointCall = async ( - example: Latest.ExampleEndpointCall, - parentKey: string, - ): Promise => { - const snippetsEntries = ( - await Promise.all( - Object.entries(example.snippets ?? {}).map( - async ([language, snippets]) => - [ - language, - await Promise.all( - snippets.map((snippet, i) => - this.visitor.CodeSnippet(snippet, `${parentKey}/snippet/${language}/${i}`), - ), - ), - ] as const, - ), + exampleEndpointCall = (example: Latest.ExampleEndpointCall, parentKey: string): Latest.ExampleEndpointCall => { + const snippetsEntries = Object.entries(example.snippets ?? {}) + .map( + ([language, snippets]) => + [ + language, + snippets.map((snippet, i) => + this.visitor.CodeSnippet(snippet, `${parentKey}/snippet/${language}/${i}`), + ), + ] as const, ) - ).filter(([, snippets]) => snippets.length > 0); + .filter(([, snippets]) => snippets.length > 0); const snippets = Object.fromEntries(snippetsEntries); return { @@ -416,18 +356,13 @@ export class Transformer { }; }; - webhookDefinition = async ( - webhook: Latest.WebhookDefinition, - parentKey: string, - ): Promise => { - const payloadPromise = + webhookDefinition = (webhook: Latest.WebhookDefinition, parentKey: string): Latest.WebhookDefinition => { + const payload = webhook.payload != null ? this.visitor.WebhookPayload(webhook.payload, `${parentKey}/payload`) : undefined; - const headersPromise = Promise.all( + const headers = webhook.headers?.map((header) => this.visitor.ObjectProperty(header, `${parentKey}/header/${header.key}`), - ) ?? [], - ); - const [payload, headers] = await Promise.all([payloadPromise, headersPromise]); + ) ?? []; return { ...webhook, payload, @@ -435,47 +370,31 @@ export class Transformer { }; }; - webhookPayload = async (payload: Latest.WebhookPayload, parentKey: string): Promise => { - const bodyPromise = this.visitor.TypeShape(payload.shape, `${parentKey}/shape`); - return { ...payload, shape: await bodyPromise }; + webhookPayload = (payload: Latest.WebhookPayload, parentKey: string): Latest.WebhookPayload => { + const shape = this.visitor.TypeShape(payload.shape, `${parentKey}/shape`); + return { ...payload, shape }; }; - webSocketChannel = async ( - channel: Latest.WebSocketChannel, - parentKey: string, - ): Promise => { - const pathParametersPromise = Promise.all( + webSocketChannel = (channel: Latest.WebSocketChannel, parentKey: string): Latest.WebSocketChannel => { + const pathParameters = channel.pathParameters?.map((param) => this.visitor.ObjectProperty(param, `${parentKey}/path/${param.key}`), - ) ?? [], - ); - const queryParametersPromise = Promise.all( + ) ?? []; + const queryParameters = channel.queryParameters?.map((param) => this.visitor.ObjectProperty(param, `${parentKey}/query/${param.key}`), - ) ?? [], - ); - const requestHeadersPromise = Promise.all( + ) ?? []; + const requestHeaders = channel.requestHeaders?.map((param) => this.visitor.ObjectProperty(param, `${parentKey}/requestHeader/${param.key}`), - ) ?? [], - ); - const messagesPromise = Promise.all( - channel.messages.map((message) => - this.visitor.WebSocketMessage(message, `${parentKey}/message/${message.origin}/${message.type}`), - ), + ) ?? []; + const messages = channel.messages.map((message) => + this.visitor.WebSocketMessage(message, `${parentKey}/message/${message.origin}/${message.type}`), ); - const examplesPromise = Promise.all( + const examples = channel.examples?.map((example, i) => this.visitor.ExampleWebSocketSession(example, `${parentKey}/example/${i}`), - ) ?? [], - ); - const [pathParameters, queryParameters, requestHeaders, messages, examples] = await Promise.all([ - pathParametersPromise, - queryParametersPromise, - requestHeadersPromise, - messagesPromise, - examplesPromise, - ]); + ) ?? []; return { ...channel, pathParameters: pathParameters.length > 0 ? pathParameters : undefined, @@ -486,70 +405,53 @@ export class Transformer { }; }; - webSocketMessage = async ( - message: Latest.WebSocketMessage, - parentKey: string, - ): Promise => { - const bodyPromise = this.visitor.TypeShape(message.body, `${parentKey}/body`); - return { - ...message, - body: await bodyPromise, - }; + webSocketMessage = (message: Latest.WebSocketMessage, parentKey: string): Latest.WebSocketMessage => { + const body = this.visitor.TypeShape(message.body, `${parentKey}/body`); + return { ...message, body }; }; - typeShape = async (shape: Latest.TypeShape, parentKey: string): Promise => { - return await visitDiscriminatedUnion(shape)._visit>({ - object: async (value) => ({ + typeShape = (shape: Latest.TypeShape, parentKey: string): Latest.TypeShape => { + return visitDiscriminatedUnion(shape)._visit({ + object: (value) => ({ ...value, - ...(await this.visitor.ObjectType(value, `${parentKey}/object`)), + ...this.visitor.ObjectType(value, `${parentKey}/object`), }), alias: identity, - enum: async (value) => ({ + enum: (value) => ({ ...value, - values: await Promise.all( - value.values.map((enumValue) => - this.visitor.EnumValue(enumValue, `${parentKey}/enum/value/${enumValue.value}`), - ), + values: value.values.map((enumValue) => + this.visitor.EnumValue(enumValue, `${parentKey}/enum/value/${enumValue.value}`), ), }), - undiscriminatedUnion: async (value) => ({ + undiscriminatedUnion: (value) => ({ ...value, - variants: await Promise.all( - value.variants.map((variant, i) => - this.visitor.UndiscriminatedUnionVariant( - variant, - `${parentKey}/undiscriminatedUnion/variant/${i}`, - ), - ), + variants: value.variants.map((variant, i) => + this.visitor.UndiscriminatedUnionVariant(variant, `${parentKey}/undiscriminatedUnion/variant/${i}`), ), }), - discriminatedUnion: async (value) => ({ + discriminatedUnion: (value) => ({ ...value, - variants: await Promise.all( - value.variants.map((variant) => - this.visitor.DiscriminatedUnionVariant( - variant, - `${parentKey}/discriminatedUnion/variant/${variant.discriminantValue}`, - ), + variants: value.variants.map((variant) => + this.visitor.DiscriminatedUnionVariant( + variant, + `${parentKey}/discriminatedUnion/variant/${variant.discriminantValue}`, ), ), }), }); }; - formDataRequest = async (request: Latest.FormDataRequest, parentKey: string): Promise => { + formDataRequest = (request: Latest.FormDataRequest, parentKey: string): Latest.FormDataRequest => { return { ...request, - fields: await Promise.all( - request.fields.map((field) => this.visitor.FormDataField(field, `${parentKey}/field/${field.key}`)), - ), + fields: request.fields.map((field) => this.visitor.FormDataField(field, `${parentKey}/field/${field.key}`)), }; }; - typeDefinition = async (type: Latest.TypeDefinition, parentKey: string): Promise => { + typeDefinition = (type: Latest.TypeDefinition, parentKey: string): Latest.TypeDefinition => { return { ...type, - shape: await this.visitor.TypeShape(type.shape, `${parentKey}/shape`), + shape: this.visitor.TypeShape(type.shape, `${parentKey}/shape`), }; }; } diff --git a/packages/fdr-sdk/src/api-definition/unwrap.ts b/packages/fdr-sdk/src/api-definition/unwrap.ts index 918d5d3f91..dc5fa351ff 100644 --- a/packages/fdr-sdk/src/api-definition/unwrap.ts +++ b/packages/fdr-sdk/src/api-definition/unwrap.ts @@ -1,8 +1,7 @@ import { isPlainObject } from "@fern-api/ui-core-utils"; import visitDiscriminatedUnion from "@fern-api/ui-core-utils/visitDiscriminatedUnion"; -import compact from "lodash-es/compact"; -import sortBy from "lodash-es/sortBy"; -import type * as FernDocs from "../docs"; +import { compact, sortBy } from "es-toolkit/array"; +import * as FernDocs from "../docs"; import { AvailabilityOrder, coalesceAvailability } from "./availability"; import { LOOP_TOLERANCE } from "./const"; import * as Latest from "./latest"; @@ -12,6 +11,7 @@ export type UnwrappedReference = { shape: DereferencedNonOptionalTypeShapeOrReference; availability: Latest.Availability | undefined; descriptions: FernDocs.MarkdownText[]; + visitedTypeIds: Set; isOptional: boolean; default?: unknown; }; @@ -20,6 +20,7 @@ export type UnwrappedObjectType = { properties: Latest.ObjectProperty[]; extraProperties: Latest.TypeReference | undefined; descriptions: FernDocs.MarkdownText[]; + visitedTypeIds: Set; }; type InternalDefaultValue = @@ -71,7 +72,7 @@ export function unwrapReference( const descriptions: FernDocs.MarkdownText[] = []; const availabilities: Latest.Availability[] = []; - const visitedTypeIds: Latest.TypeId[] = []; + const visitedTypeIds = new Set(); let internalTypeRef: TypeShapeOrReference | undefined = typeRef; let loop = 0; let circularReference = false; @@ -91,8 +92,7 @@ export function unwrapReference( } else if (internalTypeRef.type === "alias") { internalTypeRef = internalTypeRef.value; } else if (internalTypeRef.type === "id") { - if (visitedTypeIds.includes(internalTypeRef.id)) { - visitedTypeIds.push(internalTypeRef.id); + if (visitedTypeIds.has(internalTypeRef.id)) { // circular reference detected internalTypeRef = undefined; circularReference = true; @@ -103,7 +103,7 @@ export function unwrapReference( defaults.push({ type: "typeReferenceId", value: internalTypeRef.default }); } const typeDef: Latest.TypeDefinition | undefined = types[internalTypeRef.id]; - visitedTypeIds.push(internalTypeRef.id); + visitedTypeIds.add(internalTypeRef.id); internalTypeRef = typeDef?.shape; if (typeDef != null) { if (typeDef.availability) { @@ -126,12 +126,12 @@ export function unwrapReference( if (circularReference) { // eslint-disable-next-line no-console console.error( - `Circular reference detected. Falling back to unknown type. path=[${visitedTypeIds.join(", ")}]`, + `Circular reference detected. Falling back to unknown type. types=[${[...visitedTypeIds].join(", ")}]`, ); } else { // eslint-disable-next-line no-console console.error( - `Type reference is invalid. Falling back to unknown type. path=[${visitedTypeIds.join(", ")}]`, + `Type reference is invalid. Falling back to unknown type. types=[${[...visitedTypeIds].join(", ")}]`, ); } } @@ -139,6 +139,7 @@ export function unwrapReference( const toRet = { shape: internalTypeRef ?? { type: "unknown", displayName: undefined }, availability: coalesceAvailability(availabilities), + visitedTypeIds, isOptional, default: selectDefaultValue(internalTypeRef, defaults), descriptions, @@ -203,7 +204,8 @@ const UnwrapObjectTypeCache = new WeakMap, + types: Record, + parentVisitedTypeIds?: Set, ): UnwrappedObjectType { const cached = UnwrapObjectTypeCache.get(object); if (cached != null) { @@ -213,14 +215,23 @@ export function unwrapObjectType( const directProperties = object.properties; const extraProperties = object.extraProperties; const descriptions: FernDocs.MarkdownText[] = []; + const visitedTypeIds = new Set(); const extendedProperties = object.extends.flatMap((typeId): Latest.ObjectProperty[] => { + if (parentVisitedTypeIds?.has(typeId)) { + // eslint-disable-next-line no-console + console.error(`Circular reference detected. Cannot extend type=${typeId}`); + return []; + } + const typeDef = types[typeId]; + visitedTypeIds.add(typeId); if (typeDef?.description) { descriptions.push(typeDef.description); } const unwrapped = unwrapReference(typeDef?.shape, types); unwrapped?.descriptions.forEach((description) => descriptions.push(description)); + unwrapped?.visitedTypeIds.forEach((typeId) => visitedTypeIds.add(typeId)); // TODO: should we be able to extend discriminated and undiscriminated unions? if (unwrapped?.shape.type !== "object") { @@ -228,7 +239,8 @@ export function unwrapObjectType( console.error("Object extends non-object", typeId); return []; } - const extended = unwrapObjectType(unwrapped.shape, types); + const extended = unwrapObjectType(unwrapped.shape, types, visitedTypeIds); + extended.visitedTypeIds.forEach((typeId) => visitedTypeIds.add(typeId)); // merge the availability of the extended object with the availability of the properties extended.properties = extended.properties.map((property) => { @@ -270,10 +282,12 @@ export function unwrapObjectType( // however, we do NOT sort the properties by key because the initial order of properties may be significant const properties = sortBy( [...directProperties], - (property) => unwrapReference(property.valueShape, types)?.isOptional, - (property) => AvailabilityOrder.indexOf(property.availability ?? Latest.Availability.Stable), + [ + (property) => unwrapReference(property.valueShape, types)?.isOptional, + (property) => AvailabilityOrder.indexOf(property.availability ?? Latest.Availability.Stable), + ], ); - const toRet = { properties, descriptions, extraProperties }; + const toRet = { properties, descriptions, extraProperties, visitedTypeIds }; UnwrapObjectTypeCache.set(object, toRet); return toRet; } @@ -286,11 +300,13 @@ export function unwrapObjectType( // since there are extended properties, the initial order of properties are not significant, and we should sort by key const properties = sortBy( [...directProperties, ...filteredExtendedProperties], - (property) => unwrapReference(property.valueShape, types)?.isOptional, - (property) => AvailabilityOrder.indexOf(property.availability ?? Latest.Availability.Stable), - (property) => property.key, + [ + (property) => unwrapReference(property.valueShape, types)?.isOptional, + (property) => AvailabilityOrder.indexOf(property.availability ?? Latest.Availability.Stable), + (property) => property.key, + ], ); - const toRet = { properties, descriptions, extraProperties }; + const toRet = { properties, descriptions, extraProperties, visitedTypeIds }; UnwrapObjectTypeCache.set(object, toRet); return toRet; } @@ -303,7 +319,7 @@ export function unwrapDiscriminatedUnionVariant( variant: Latest.DiscriminatedUnionVariant, types: Record, ): UnwrappedObjectType { - const { properties, descriptions } = unwrapObjectType(variant, types); // this is already cached + const { properties, descriptions, visitedTypeIds } = unwrapObjectType(variant, types); // this is already cached return { properties: [ { @@ -322,6 +338,7 @@ export function unwrapDiscriminatedUnionVariant( ], extraProperties: undefined, descriptions, + visitedTypeIds, }; } diff --git a/packages/fdr-sdk/src/client/FdrClient.ts b/packages/fdr-sdk/src/client/FdrClient.ts new file mode 100644 index 0000000000..d87561fecb --- /dev/null +++ b/packages/fdr-sdk/src/client/FdrClient.ts @@ -0,0 +1 @@ +export { FernRegistryClient as FdrClient } from "./generated"; diff --git a/packages/fdr-sdk/src/client/generated/api/resources/api/resources/latest/resources/endpoint/types/ErrorResponse.ts b/packages/fdr-sdk/src/client/generated/api/resources/api/resources/latest/resources/endpoint/types/ErrorResponse.ts index ba99f74ee2..53afe4407e 100644 --- a/packages/fdr-sdk/src/client/generated/api/resources/api/resources/latest/resources/endpoint/types/ErrorResponse.ts +++ b/packages/fdr-sdk/src/client/generated/api/resources/api/resources/latest/resources/endpoint/types/ErrorResponse.ts @@ -9,6 +9,6 @@ export interface ErrorResponse FernRegistry.api.latest.WithAvailability { shape: FernRegistry.api.latest.TypeShape | undefined; statusCode: number; - name: string | undefined; + name: string; examples: FernRegistry.api.latest.ErrorExample[] | undefined; } diff --git a/packages/fdr-sdk/src/client/index.ts b/packages/fdr-sdk/src/client/index.ts index b7d10680d0..ccd46bdd69 100644 --- a/packages/fdr-sdk/src/client/index.ts +++ b/packages/fdr-sdk/src/client/index.ts @@ -1,4 +1,4 @@ -export { FernRegistryClient as FdrClient } from "./generated"; +export * from "./FdrClient"; export * from "./types"; export { visitDbNavigationConfig, visitUnversionedDbNavigationConfig } from "./visitDbNavigationConfig"; export { visitDbNavigationTab, visitWriteNavigationTab } from "./visitNavigationTab"; diff --git a/packages/fdr-sdk/src/converters/db/convertAPIDefinitionToDb.ts b/packages/fdr-sdk/src/converters/db/convertAPIDefinitionToDb.ts index 3c4addeea0..3b115155fb 100644 --- a/packages/fdr-sdk/src/converters/db/convertAPIDefinitionToDb.ts +++ b/packages/fdr-sdk/src/converters/db/convertAPIDefinitionToDb.ts @@ -1,8 +1,8 @@ import assertNever from "@fern-api/ui-core-utils/assertNever"; import titleCase from "@fern-api/ui-core-utils/titleCase"; +import { kebabCase } from "es-toolkit/string"; import isEqual from "fast-deep-equal"; import { APIV1Db, APIV1Read, APIV1Write, FdrAPI } from "../../client"; -import { kebabCase } from "../../utils"; import { generateEndpointErrorExample, generateEndpointNonStreamResponseExample, diff --git a/packages/fdr-sdk/src/converters/db/convertDocsDefinitionToDb.ts b/packages/fdr-sdk/src/converters/db/convertDocsDefinitionToDb.ts index 79335ba74f..08079ae48b 100644 --- a/packages/fdr-sdk/src/converters/db/convertDocsDefinitionToDb.ts +++ b/packages/fdr-sdk/src/converters/db/convertDocsDefinitionToDb.ts @@ -1,4 +1,5 @@ import assertNever from "@fern-api/ui-core-utils/assertNever"; +import { kebabCase } from "es-toolkit/string"; import { DocsV1Db, DocsV1Read, @@ -10,7 +11,6 @@ import { visitWriteNavigationConfig, } from "../../client"; import { isNavigationTabLink } from "../../client/visitNavigationTab"; -import { kebabCase } from "../../utils"; import { DEFAULT_DARK_MODE_ACCENT_PRIMARY, DEFAULT_LIGHT_MODE_ACCENT_PRIMARY } from "../utils/colors"; export interface S3FileInfo { diff --git a/packages/fdr-sdk/src/converters/db/upgrade/upgradeV2ToV3.ts b/packages/fdr-sdk/src/converters/db/upgrade/upgradeV2ToV3.ts index f85e591f71..5cfc448fc3 100644 --- a/packages/fdr-sdk/src/converters/db/upgrade/upgradeV2ToV3.ts +++ b/packages/fdr-sdk/src/converters/db/upgrade/upgradeV2ToV3.ts @@ -1,5 +1,5 @@ +import { mapValues } from "es-toolkit/object"; import { DocsV1Db } from "../../../client"; -import { mapValues } from "../../../utils"; export function upgradeV2ToV3(v2: DocsV1Db.DocsDefinitionDb.V2): DocsV1Db.DocsDefinitionDb.V3 { return { diff --git a/packages/fdr-sdk/src/converters/read/convertDbDocsConfigToRead.ts b/packages/fdr-sdk/src/converters/read/convertDbDocsConfigToRead.ts index 55889c5d5f..51ca7ff9f0 100644 --- a/packages/fdr-sdk/src/converters/read/convertDbDocsConfigToRead.ts +++ b/packages/fdr-sdk/src/converters/read/convertDbDocsConfigToRead.ts @@ -1,8 +1,8 @@ import assertNever from "@fern-api/ui-core-utils/assertNever"; +import { kebabCase } from "es-toolkit/string"; import tinycolor from "tinycolor2"; import { DocsV1Db, DocsV1Read, visitDbNavigationConfig, visitUnversionedDbNavigationConfig } from "../../client"; import { visitDbNavigationTab } from "../../client/visitNavigationTab"; -import { kebabCase } from "../../utils"; import { DEFAULT_DARK_MODE_ACCENT_PRIMARY, DEFAULT_LIGHT_MODE_ACCENT_PRIMARY } from "../utils/colors"; export function convertDbDocsConfigToRead({ dbShape }: { dbShape: DocsV1Db.DocsDbConfig }): DocsV1Read.DocsConfig { diff --git a/packages/fdr-sdk/src/index.ts b/packages/fdr-sdk/src/index.ts index 13caa769f4..2a297e696c 100644 --- a/packages/fdr-sdk/src/index.ts +++ b/packages/fdr-sdk/src/index.ts @@ -1,5 +1,5 @@ +export * as ApiDefinition from "./api-definition"; export * from "./client"; export * from "./converters"; +export * as FernDocs from "./docs"; export * as FernNavigation from "./navigation"; -export { kebabCase } from "./utils/lodash"; -export { default as once } from "./utils/lodash/once"; diff --git a/packages/fdr-sdk/src/navigation/ApiDefinitionHolder.ts b/packages/fdr-sdk/src/navigation/ApiDefinitionHolder.ts index 19862a492b..d514fec238 100644 --- a/packages/fdr-sdk/src/navigation/ApiDefinitionHolder.ts +++ b/packages/fdr-sdk/src/navigation/ApiDefinitionHolder.ts @@ -1,7 +1,7 @@ import type { APIV1Read } from "../client/types"; -import { FernNavigation } from "./.."; import { ROOT_PACKAGE_ID } from "./consts"; import { isSubpackage } from "./utils/isSubpackage"; +import * as FernNavigation from "./versions/latest"; export class ApiDefinitionHolder { public static create(api: APIV1Read.ApiDefinition): ApiDefinitionHolder { diff --git a/packages/fdr-sdk/src/navigation/NodeCollector.ts b/packages/fdr-sdk/src/navigation/NodeCollector.ts index 6ab72ba653..a980dc6e3e 100644 --- a/packages/fdr-sdk/src/navigation/NodeCollector.ts +++ b/packages/fdr-sdk/src/navigation/NodeCollector.ts @@ -1,5 +1,5 @@ import { EMPTY_ARRAY } from "@fern-api/ui-core-utils"; -import { once } from "../utils"; +import { once } from "es-toolkit/function"; import { FernNavigation } from "./.."; import { pruneVersionNode } from "./utils/pruneVersionNode"; diff --git a/packages/fdr-sdk/src/navigation/versions/v1/converters/NavigationConfigConverter.ts b/packages/fdr-sdk/src/navigation/versions/v1/converters/NavigationConfigConverter.ts index 324a747a24..57777c5b50 100644 --- a/packages/fdr-sdk/src/navigation/versions/v1/converters/NavigationConfigConverter.ts +++ b/packages/fdr-sdk/src/navigation/versions/v1/converters/NavigationConfigConverter.ts @@ -1,12 +1,12 @@ import assertNever from "@fern-api/ui-core-utils/assertNever"; import visitDiscriminatedUnion from "@fern-api/ui-core-utils/visitDiscriminatedUnion"; +import { kebabCase } from "es-toolkit/string"; import { FernNavigation } from "../../../.."; import type { APIV1Read, DocsV1Read } from "../../../../client/types"; import { visitReadNavigationConfig, visitUnversionedReadNavigationConfig, } from "../../../../client/visitReadNavigationConfig"; -import { kebabCase } from "../../../../utils"; import { ApiReferenceNavigationConverter } from "./ApiReferenceNavigationConverter"; import { ChangelogNavigationConverter } from "./ChangelogConverter"; import { NodeIdGenerator } from "./NodeIdGenerator"; diff --git a/packages/fdr-sdk/src/navigation/versions/v1/converters/toRootNode.ts b/packages/fdr-sdk/src/navigation/versions/v1/converters/toRootNode.ts index e116b7cb56..2c78a9422e 100644 --- a/packages/fdr-sdk/src/navigation/versions/v1/converters/toRootNode.ts +++ b/packages/fdr-sdk/src/navigation/versions/v1/converters/toRootNode.ts @@ -1,6 +1,6 @@ +import { mapValues } from "es-toolkit/object"; import { FernNavigation } from "../../../.."; import { APIV1Read, type DocsV2Read } from "../../../../client/types"; -import { mapValues } from "../../../../utils"; import { getFrontmatter } from "../../../utils/getFrontmatter"; import { getNoIndexFromFrontmatter } from "../../../utils/getNoIndexFromFrontmatter"; import { NavigationConfigConverter } from "./NavigationConfigConverter"; diff --git a/packages/fdr-sdk/src/utils/index.ts b/packages/fdr-sdk/src/utils/index.ts deleted file mode 100644 index d8880050d7..0000000000 --- a/packages/fdr-sdk/src/utils/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./lodash"; diff --git a/packages/fdr-sdk/src/utils/lodash/before.ts b/packages/fdr-sdk/src/utils/lodash/before.ts deleted file mode 100644 index 3009fa9dbb..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/before.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * Creates a function that invokes `func`, with the `this` binding and arguments - * of the created function, while it's called less than `n` times. Subsequent - * calls to the created function return the result of the last `func` invocation. - * - * @since 3.0.0 - * @category Function - * @param {number} n The number of calls at which `func` is no longer invoked. - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new restricted function. - * @example - * - * jQuery(element).on('click', before(5, addContactToList)) - * // => Allows adding up to 4 contacts to the list. - */ -// eslint-disable-next-line @typescript-eslint/no-explicit-any -function before any>(n: number, func: F): (...args: Parameters) => ReturnType { - let result: ReturnType | undefined; - if (typeof func !== "function") { - throw new TypeError("Expected a function"); - } - return function (...args: Parameters): ReturnType { - if (--n > 0) { - result = func.apply(this, args); - } - if (n <= 1) { - func = undefined as unknown as F; // A way to "disable" the function without type errors - } - return result as ReturnType; - }; -} - -export default before; diff --git a/packages/fdr-sdk/src/utils/lodash/index.ts b/packages/fdr-sdk/src/utils/lodash/index.ts deleted file mode 100644 index c429874fb2..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export { default as kebabCase } from "./kebabCase"; -export { default as mapValues } from "./mapValues"; -export { default as once } from "./once"; diff --git a/packages/fdr-sdk/src/utils/lodash/internal/getTag.ts b/packages/fdr-sdk/src/utils/lodash/internal/getTag.ts deleted file mode 100644 index 357420453d..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/internal/getTag.ts +++ /dev/null @@ -1,17 +0,0 @@ -const toString = Object.prototype.toString; - -/** - * Gets the `toStringTag` of `value`. - * - * @private - * @param {*} value The value to query. - * @returns {string} Returns the `toStringTag`. - */ -function getTag(value: unknown): string { - if (value == null) { - return value === undefined ? "[object Undefined]" : "[object Null]"; - } - return toString.call(value); -} - -export default getTag; diff --git a/packages/fdr-sdk/src/utils/lodash/internal/unicodeWords.ts b/packages/fdr-sdk/src/utils/lodash/internal/unicodeWords.ts deleted file mode 100644 index 2b37a8c199..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/internal/unicodeWords.ts +++ /dev/null @@ -1,80 +0,0 @@ -/** Used to compose unicode character classes. */ -const rsAstralRange = "\\ud800-\\udfff"; -const rsComboMarksRange = "\\u0300-\\u036f"; -const reComboHalfMarksRange = "\\ufe20-\\ufe2f"; -const rsComboSymbolsRange = "\\u20d0-\\u20ff"; -const rsComboMarksExtendedRange = "\\u1ab0-\\u1aff"; -const rsComboMarksSupplementRange = "\\u1dc0-\\u1dff"; -const rsComboRange = - rsComboMarksRange + - reComboHalfMarksRange + - rsComboSymbolsRange + - rsComboMarksExtendedRange + - rsComboMarksSupplementRange; -const rsDingbatRange = "\\u2700-\\u27bf"; -const rsLowerRange = "a-z\\xdf-\\xf6\\xf8-\\xff"; -const rsMathOpRange = "\\xac\\xb1\\xd7\\xf7"; -const rsNonCharRange = "\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf"; -const rsPunctuationRange = "\\u2000-\\u206f"; -const rsSpaceRange = - " \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000"; -const rsUpperRange = "A-Z\\xc0-\\xd6\\xd8-\\xde"; -const rsVarRange = "\\ufe0e\\ufe0f"; -const rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange; - -/** Used to compose unicode capture groups. */ -const rsApos = "['\u2019]"; -const rsBreak = `[${rsBreakRange}]`; -const rsCombo = `[${rsComboRange}]`; -const rsDigit = "\\d"; -const rsDingbat = `[${rsDingbatRange}]`; -const rsLower = `[${rsLowerRange}]`; -const rsMisc = `[^${rsAstralRange}${rsBreakRange + rsDigit + rsDingbatRange + rsLowerRange + rsUpperRange}]`; -const rsFitz = "\\ud83c[\\udffb-\\udfff]"; -const rsModifier = `(?:${rsCombo}|${rsFitz})`; -const rsNonAstral = `[^${rsAstralRange}]`; -const rsRegional = "(?:\\ud83c[\\udde6-\\uddff]){2}"; -const rsSurrPair = "[\\ud800-\\udbff][\\udc00-\\udfff]"; -const rsUpper = `[${rsUpperRange}]`; -const rsZWJ = "\\u200d"; - -/** Used to compose unicode regexes. */ -const rsMiscLower = `(?:${rsLower}|${rsMisc})`; -const rsMiscUpper = `(?:${rsUpper}|${rsMisc})`; -const rsOptContrLower = `(?:${rsApos}(?:d|ll|m|re|s|t|ve))?`; -const rsOptContrUpper = `(?:${rsApos}(?:D|LL|M|RE|S|T|VE))?`; -const reOptMod = `${rsModifier}?`; -const rsOptVar = `[${rsVarRange}]?`; -const rsOptJoin = `(?:${rsZWJ}(?:${[rsNonAstral, rsRegional, rsSurrPair].join("|")})${rsOptVar + reOptMod})*`; -const rsOrdLower = "\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])"; -const rsOrdUpper = "\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])"; -const rsSeq = rsOptVar + reOptMod + rsOptJoin; -const rsEmoji = `(?:${[rsDingbat, rsRegional, rsSurrPair].join("|")})${rsSeq}`; - -// eslint-disable-next-line no-misleading-character-class -const reUnicodeWords = RegExp( - [ - `${rsUpper}?${rsLower}+${rsOptContrLower}(?=${[rsBreak, rsUpper, "$"].join("|")})`, - `${rsMiscUpper}+${rsOptContrUpper}(?=${[rsBreak, rsUpper + rsMiscLower, "$"].join("|")})`, - `${rsUpper}?${rsMiscLower}+${rsOptContrLower}`, - `${rsUpper}+${rsOptContrUpper}`, - rsOrdUpper, - rsOrdLower, - `${rsDigit}+`, - rsEmoji, - ].join("|"), - "g", -); - -/** - * Splits a Unicode `string` into an array of its words. - * - * @private - * @param {string} The string to inspect. - * @returns {Array} Returns the words of `string`. - */ -function unicodeWords(string: string): RegExpMatchArray | null { - return string.match(reUnicodeWords); -} - -export default unicodeWords; diff --git a/packages/fdr-sdk/src/utils/lodash/isSymbol.ts b/packages/fdr-sdk/src/utils/lodash/isSymbol.ts deleted file mode 100644 index 3b467c4b58..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/isSymbol.ts +++ /dev/null @@ -1,23 +0,0 @@ -import getTag from "./internal/getTag"; - -/** - * Checks if `value` is classified as a `Symbol` primitive or object. - * - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. - * @example - * - * isSymbol(Symbol.iterator) - * // => true - * - * isSymbol('abc') - * // => false - */ -function isSymbol(value: unknown): boolean { - const type = typeof value; - return type === "symbol" || (type === "object" && value != null && getTag(value) === "[object Symbol]"); -} - -export default isSymbol; diff --git a/packages/fdr-sdk/src/utils/lodash/kebabCase.ts b/packages/fdr-sdk/src/utils/lodash/kebabCase.ts deleted file mode 100644 index b85acc6fdb..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/kebabCase.ts +++ /dev/null @@ -1,30 +0,0 @@ -import toString from "./toString"; -import words from "./words"; - -/** - * Converts `string` to - * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles). - * - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the kebab cased string. - * @see camelCase, lowerCase, snakeCase, startCase, upperCase, upperFirst - * @example - * - * kebabCase('Foo Bar') - * // => 'foo-bar' - * - * kebabCase('fooBar') - * // => 'foo-bar' - * - * kebabCase('__FOO_BAR__') - * // => 'foo-bar' - */ -const kebabCase = (string: string): string => - words(toString(string).replace(/['\u2019]/g, "")).reduce( - (result, word, index) => result + (index ? "-" : "") + word.toLowerCase(), - "", - ); - -export default kebabCase; diff --git a/packages/fdr-sdk/src/utils/lodash/mapValues.ts b/packages/fdr-sdk/src/utils/lodash/mapValues.ts deleted file mode 100644 index 34e406cea8..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/mapValues.ts +++ /dev/null @@ -1,40 +0,0 @@ -/** - * Creates an object with the same keys as `object` and values generated - * by running each own enumerable string keyed property of `object` thru - * `iteratee`. The iteratee is invoked with three arguments: - * (value, key, object). - * - * @since 2.4.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Object} Returns the new mapped object. - * @see mapKeys - * @example - * - * const users = { - * 'fred': { 'user': 'fred', 'age': 40 }, - * 'pebbles': { 'user': 'pebbles', 'age': 1 } - * } - * - * mapValue(users, ({ age }) => age) - * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) - */ -function mapValue) => VALUE2>( - object: Record, - iteratee: ITERATEE, -): Record { - object = Object(object); - const result: Record = {}; - - Object.keys(object).forEach((key) => { - const val = object[key]; - if (val == null) { - return; // Should this be a hard failure? - } - result[key] = iteratee(val, key, object); - }); - return result; -} - -export default mapValue; diff --git a/packages/fdr-sdk/src/utils/lodash/once.ts b/packages/fdr-sdk/src/utils/lodash/once.ts deleted file mode 100644 index 5876efb602..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/once.ts +++ /dev/null @@ -1,25 +0,0 @@ -import before from "./before"; - -/** - * Creates a function that is restricted to invoking `func` once. Repeat calls - * to the function return the value of the first invocation. The `func` is - * invoked with the `this` binding and arguments of the created function. - * - * @since 0.1.0 - * @category Function - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new restricted function. - * @example - * - * const initialize = once(createApplication) - * initialize() - * initialize() - * // => `createApplication` is invoked once - */ - -// eslint-disable-next-line @typescript-eslint/no-explicit-any -function once any>(func: F): F { - return before(2, func) as F; -} - -export default once; diff --git a/packages/fdr-sdk/src/utils/lodash/toString.ts b/packages/fdr-sdk/src/utils/lodash/toString.ts deleted file mode 100644 index 5c03ce3360..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/toString.ts +++ /dev/null @@ -1,46 +0,0 @@ -import isSymbol from "./isSymbol"; - -/** Used as references for various `Number` constants. */ -const INFINITY = 1 / 0; - -/** - * Converts `value` to a string. An empty string is returned for `null` - * and `undefined` values. The sign of `-0` is preserved. - * - * @since 4.0.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {string} Returns the converted string. - * @example - * - * toString(null) - * // => '' - * - * toString(-0) - * // => '-0' - * - * toString([1, 2, 3]) - * // => '1,2,3' - */ -function toString(value: unknown): string { - if (value == null) { - return ""; - } - // Exit early for strings to avoid a performance hit in some environments. - if (typeof value === "string") { - return value; - } - if (Array.isArray(value)) { - // Recursively convert values (susceptible to call stack limits). - return `${value.map((other) => (other == null ? other : toString(other)))}`; - } - if (isSymbol(value)) { - // eslint-disable-next-line @typescript-eslint/no-base-to-string - return value.toString(); - } - // eslint-disable-next-line @typescript-eslint/no-base-to-string - const result = `${value}`; - return result === "0" && 1 / (value as number) === -INFINITY ? "-0" : result; -} - -export default toString; diff --git a/packages/fdr-sdk/src/utils/lodash/words.ts b/packages/fdr-sdk/src/utils/lodash/words.ts deleted file mode 100644 index 60fab06aa7..0000000000 --- a/packages/fdr-sdk/src/utils/lodash/words.ts +++ /dev/null @@ -1,37 +0,0 @@ -import unicodeWords from "./internal/unicodeWords"; - -const hasUnicodeWord = RegExp.prototype.test.bind(/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/); - -/** Used to match words composed of alphanumeric characters. */ -// eslint-disable-next-line no-control-regex -const reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g; - -function asciiWords(string: string) { - return string.match(reAsciiWord); -} - -/** - * Splits `string` into an array of its words. - * - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to inspect. - * @param {RegExp|string} [pattern] The pattern to match words. - * @returns {Array} Returns the words of `string`. - * @example - * - * words('fred, barney, & pebbles') - * // => ['fred', 'barney', 'pebbles'] - * - * words('fred, barney, & pebbles', /[^, ]+/g) - * // => ['fred', 'barney', '&', 'pebbles'] - */ -function words(string: string, pattern?: RegExp): string[] { - if (pattern === undefined) { - const result = hasUnicodeWord(string) ? unicodeWords(string) : asciiWords(string); - return result || []; - } - return string.match(pattern) || []; -} - -export default words; diff --git a/packages/healthchecks/package.json b/packages/healthchecks/package.json index f542498036..9cf17a250d 100644 --- a/packages/healthchecks/package.json +++ b/packages/healthchecks/package.json @@ -50,8 +50,7 @@ "yargs": "^17.4.1" }, "dependencies": { - "@algolia/client-search": "^4.23.3", - "algoliasearch": "^4.22.1", + "algoliasearch": "^5.8.1", "console-table-printer": "^2.12.0", "node-emoji": "^2.1.3" } diff --git a/packages/healthchecks/src/rules/search-slugs-correct/rule.ts b/packages/healthchecks/src/rules/search-slugs-correct/rule.ts index 6755235ec3..804d71ae99 100644 --- a/packages/healthchecks/src/rules/search-slugs-correct/rule.ts +++ b/packages/healthchecks/src/rules/search-slugs-correct/rule.ts @@ -1,7 +1,6 @@ -import { SearchForFacetValuesResponse, SearchResponse } from "@algolia/client-search"; import { FdrAPI, FdrClient, FernNavigation } from "@fern-api/fdr-sdk"; import { assertNever } from "@fern-api/ui-core-utils"; -import algoliasearch, { SearchClient } from "algoliasearch"; +import { SearchClient, SearchForFacetValuesResponse, SearchResponse, algoliasearch } from "algoliasearch"; import { Rule, RuleArgs, RuleResult } from "../runRules"; export class SearchSlugsCorrectRule implements Rule { @@ -163,9 +162,10 @@ function getSlugFromAlgoliaRecord(algoliaRecord: FdrAPI.AlgoliaRecord): string { case "webhook-v4": case "websocket-v4": case "markdown-section-v1": + case "endpoint-field-v1": + case "websocket-field-v1": + case "webhook-field-v1": return algoliaRecord.slug; - case "field-v1": - return algoliaRecord.value.slug; default: assertNever(algoliaRecord); } diff --git a/packages/template-resolver/package.json b/packages/template-resolver/package.json index 6ed48fcd64..b9142e9765 100644 --- a/packages/template-resolver/package.json +++ b/packages/template-resolver/package.json @@ -34,7 +34,6 @@ "devDependencies": { "@fern-platform/configs": "workspace:*", "@types/jest": "^29.0.3", - "@types/lodash-es": "^4.17.12", "@types/node": "^18.7.18", "depcheck": "^1.4.6", "eslint": "^8.56.0", diff --git a/packages/ui/app/package.json b/packages/ui/app/package.json index 896544a27a..73920c53b6 100644 --- a/packages/ui/app/package.json +++ b/packages/ui/app/package.json @@ -37,12 +37,13 @@ "@emotion/is-prop-valid": "^1.2.2", "@fern-api/fdr-sdk": "workspace:*", "@fern-api/template-resolver": "workspace:*", + "@fern-api/ui-core-utils": "workspace:*", "@fern-ui/chatbot": "workspace:*", "@fern-ui/components": "workspace:*", - "@fern-api/ui-core-utils": "workspace:*", "@fern-ui/fdr-utils": "workspace:*", - "@fern-ui/fern-docs-utils": "workspace:*", + "@fern-ui/fern-docs-mdx": "workspace:*", "@fern-ui/fern-docs-server": "workspace:*", + "@fern-ui/fern-docs-utils": "workspace:*", "@fern-ui/loadable": "workspace:*", "@fern-ui/next-seo": "workspace:*", "@fern-ui/react-commons": "workspace:*", @@ -62,16 +63,16 @@ "@segment/snippet": "^5.2.1", "@shikijs/transformers": "^1.2.2", "@types/nprogress": "^0.2.3", - "algoliasearch": "^4.24.0", + "algoliasearch": "^5.8.1", "bezier-easing": "^2.1.0", "clsx": "^2.1.0", "colorjs.io": "^0.5.0", + "es-toolkit": "^1.24.0", "esbuild": "0.20.2", "estree-util-visit": "^2.0.0", "fastdom": "^1.0.12", "framer-motion": "^11.2.4", "github-slugger": "^2.0.0", - "gray-matter": "^4.0.3", "hast-util-heading-rank": "^3.0.0", "hast-util-to-estree": "^3.1.0", "hast-util-to-jsx-runtime": "^2.3.0", @@ -84,7 +85,6 @@ "jotai-location": "^0.5.5", "jsonpath": "^1.1.1", "launchdarkly-js-client-sdk": "^3.4.0", - "lodash-es": "^4.17.21", "mdast-util-from-markdown": "^2.0.0", "mdast-util-mdx-jsx": "^3.1.0", "mdast-util-to-hast": "^13.1.0", @@ -100,7 +100,7 @@ "react-dom": "^18.2.0", "react-error-boundary": "^4.0.10", "react-feather": "^2.0.10", - "react-instantsearch": "^7.7.0", + "react-instantsearch": "^7.13.3", "react-medium-image-zoom": "^5.1.10", "react-virtuoso": "^4.7.7", "rehype-katex": "^7.0.0", @@ -122,9 +122,9 @@ "zod": "^3.23.8" }, "devDependencies": { - "@fern-ui/fern-docs-auth": "workspace:*", "@chromatic-com/storybook": "^1.3.5", "@fern-platform/configs": "workspace:*", + "@fern-ui/fern-docs-auth": "workspace:*", "@mdx-js/esbuild": "^3.0.1", "@storybook/addon-essentials": "8.1.0-alpha.6", "@storybook/addon-interactions": "8.1.0-alpha.6", @@ -143,7 +143,6 @@ "@types/estree-jsx": "^1.0.5", "@types/hast": "^3.0.4", "@types/jsonpath": "^0.2.4", - "@types/lodash-es": "^4.17.12", "@types/mdast": "^4.0.3", "@types/mdx": "^2.0.13", "@types/node": "^18.7.18", diff --git a/packages/ui/app/src/analytics/CustomerAnalytics.tsx b/packages/ui/app/src/analytics/CustomerAnalytics.tsx index 62c5581d2d..b5b24beb48 100644 --- a/packages/ui/app/src/analytics/CustomerAnalytics.tsx +++ b/packages/ui/app/src/analytics/CustomerAnalytics.tsx @@ -1,7 +1,7 @@ import { DocsV1Read } from "@fern-api/fdr-sdk"; +import { isEqual } from "es-toolkit/predicate"; import { useAtomValue } from "jotai"; import { selectAtom } from "jotai/utils"; -import { isEqual } from "lodash-es"; import dynamic from "next/dynamic"; import Script from "next/script"; import { ReactElement, memo } from "react"; diff --git a/packages/ui/app/src/api-reference/endpoints/EndpointContent.tsx b/packages/ui/app/src/api-reference/endpoints/EndpointContent.tsx index fb66bbf7a1..bd4dc1539c 100644 --- a/packages/ui/app/src/api-reference/endpoints/EndpointContent.tsx +++ b/packages/ui/app/src/api-reference/endpoints/EndpointContent.tsx @@ -2,10 +2,10 @@ import type * as ApiDefinition from "@fern-api/fdr-sdk/api-definition"; import { EndpointContext } from "@fern-api/fdr-sdk/api-definition"; import type * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import cn from "clsx"; +import { isEqual } from "es-toolkit/predicate"; import { useInView } from "framer-motion"; import { atom, useAtom, useAtomValue } from "jotai"; import { selectAtom } from "jotai/utils"; -import { isEqual } from "lodash-es"; import dynamic from "next/dynamic"; import { memo, useCallback, useEffect, useMemo, useRef, useState } from "react"; import { useCallbackOne } from "use-memo-one"; diff --git a/packages/ui/app/src/api-reference/endpoints/EndpointContentCodeSnippets.tsx b/packages/ui/app/src/api-reference/endpoints/EndpointContentCodeSnippets.tsx index 97e0b927c1..b94e5ca23d 100644 --- a/packages/ui/app/src/api-reference/endpoints/EndpointContentCodeSnippets.tsx +++ b/packages/ui/app/src/api-reference/endpoints/EndpointContentCodeSnippets.tsx @@ -15,7 +15,6 @@ import { JsonPropertyPath } from "../examples/JsonPropertyPath"; import { TitledExample } from "../examples/TitledExample"; import type { CodeExample, CodeExampleGroup } from "../examples/code-example"; import { lineNumberOf } from "../examples/utils"; -import { getMessageForStatus } from "../utils/getMessageForStatus"; import { WebSocketMessages } from "../web-socket/WebSocketMessages"; import { CodeExampleClientDropdown } from "./CodeExampleClientDropdown"; import { EndpointUrlWithOverflow } from "./EndpointUrlWithOverflow"; @@ -245,7 +244,7 @@ function renderResponseTitle(statusCode: number, method?: APIV1Read.HttpMethod) return ( - {getMessageForStatus(statusCode, method)} + {ApiDefinition.getMessageForStatus(statusCode, method)} ); } diff --git a/packages/ui/app/src/api-reference/endpoints/EndpointContentLeft.tsx b/packages/ui/app/src/api-reference/endpoints/EndpointContentLeft.tsx index 6eeef30117..14a475bc9e 100644 --- a/packages/ui/app/src/api-reference/endpoints/EndpointContentLeft.tsx +++ b/packages/ui/app/src/api-reference/endpoints/EndpointContentLeft.tsx @@ -1,9 +1,8 @@ import * as ApiDefinition from "@fern-api/fdr-sdk/api-definition"; import { EndpointContext } from "@fern-api/fdr-sdk/api-definition"; import { visitDiscriminatedUnion } from "@fern-api/ui-core-utils"; -import camelCase from "lodash-es/camelCase"; -import sortBy from "lodash-es/sortBy"; -import upperFirst from "lodash-es/upperFirst"; +import { sortBy } from "es-toolkit/array"; +import { camelCase, upperFirst } from "es-toolkit/string"; import { memo, useMemo } from "react"; import { useFeatureFlags } from "../../atoms"; import { Markdown } from "../../mdx/Markdown"; @@ -292,11 +291,7 @@ const UnmemoizedEndpointContentLeft: React.FC = ({ {showErrors && endpoint.errors && endpoint.errors.length > 0 && (
- {sortBy( - endpoint.errors, - (e) => e.statusCode, - (e) => e.name, - ).map((error, idx) => { + {sortBy(endpoint.errors, [(e) => e.statusCode, (e) => e.name]).map((error, idx) => { return ( (function EndpointErrorUnm >
{error.statusCode}
-
- {error.name != null ? titleCase(error.name) : getErrorNameForStatus(error.statusCode)} -
+
{error.name}
{availability != null && }
diff --git a/packages/ui/app/src/api-reference/endpoints/EndpointParameter.tsx b/packages/ui/app/src/api-reference/endpoints/EndpointParameter.tsx index acfed70f46..9f3897a236 100644 --- a/packages/ui/app/src/api-reference/endpoints/EndpointParameter.tsx +++ b/packages/ui/app/src/api-reference/endpoints/EndpointParameter.tsx @@ -1,10 +1,9 @@ -// import type { APIV1Read } from "@fern-api/fdr-sdk/client/types"; import type * as ApiDefinition from "@fern-api/fdr-sdk/api-definition"; import type * as FernDocs from "@fern-api/fdr-sdk/docs"; import * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import { EMPTY_ARRAY } from "@fern-api/ui-core-utils"; import cn from "clsx"; -import { compact } from "lodash-es"; +import { compact } from "es-toolkit/array"; import { FC, PropsWithChildren, ReactNode, memo, useEffect, useRef, useState } from "react"; import { capturePosthogEvent } from "../../analytics/posthog"; import { useIsApiReferencePaginated, useRouteListener } from "../../atoms"; diff --git a/packages/ui/app/src/api-reference/endpoints/ErrorExampleSelect.tsx b/packages/ui/app/src/api-reference/endpoints/ErrorExampleSelect.tsx index 91e605dd4f..add6821a73 100644 --- a/packages/ui/app/src/api-reference/endpoints/ErrorExampleSelect.tsx +++ b/packages/ui/app/src/api-reference/endpoints/ErrorExampleSelect.tsx @@ -5,7 +5,6 @@ import clsx from "clsx"; import { Check, NavArrowDown, NavArrowUp } from "iconoir-react"; import { FC, Fragment, PropsWithChildren, forwardRef } from "react"; import { StatusCodeTag, statusCodeToIntent } from "../../components/StatusCodeTag"; -import { getMessageForStatus } from "../utils/getMessageForStatus"; export declare namespace ErrorExampleSelect { export interface Props { @@ -46,8 +45,8 @@ export const ErrorExampleSelect: FC> if (selectedError != null) { const content = `${ selectedError.examples && selectedError.examples.length > 1 - ? `${selectedError.name ?? getMessageForStatus(selectedError.statusCode)} Example ${selectedExampleIndex + 1}` - : selectedError.name ?? getMessageForStatus(selectedError.statusCode) + ? `${selectedError.name} Example ${selectedExampleIndex + 1}` + : selectedError.name }`; return ( @@ -102,8 +101,8 @@ export const ErrorExampleSelect: FC> {example.name ?? (error.examples && error.examples.length > 1 - ? `${error.name ?? getMessageForStatus(error.statusCode)} Example ${j + 1}` - : error.name ?? getMessageForStatus(error.statusCode))} + ? `${error.name} Example ${j + 1}` + : error.name)} @@ -118,7 +117,9 @@ export const ErrorExampleSelect: FC> {`${error.name ?? getMessageForStatus(error.statusCode)}`} + > + {error.name} + ))} diff --git a/packages/ui/app/src/api-reference/examples/code-example.ts b/packages/ui/app/src/api-reference/examples/code-example.ts index 2e40c0c52e..9923094181 100644 --- a/packages/ui/app/src/api-reference/examples/code-example.ts +++ b/packages/ui/app/src/api-reference/examples/code-example.ts @@ -1,6 +1,6 @@ import type * as ApiDefinition from "@fern-api/fdr-sdk/api-definition"; import titleCase from "@fern-api/ui-core-utils/titleCase"; -import sortBy from "lodash-es/sortBy"; +import { sortBy } from "es-toolkit/array"; export interface CodeExample { key: string; @@ -75,7 +75,7 @@ export function generateCodeExamples( icon: getIconForClient(language), examples, })), - "language", + ["language"], ), ]); } diff --git a/packages/ui/app/src/api-reference/types/discriminated-union/DiscriminatedUnionVariant.tsx b/packages/ui/app/src/api-reference/types/discriminated-union/DiscriminatedUnionVariant.tsx index 3a3b16c6fb..f561faad2b 100644 --- a/packages/ui/app/src/api-reference/types/discriminated-union/DiscriminatedUnionVariant.tsx +++ b/packages/ui/app/src/api-reference/types/discriminated-union/DiscriminatedUnionVariant.tsx @@ -3,7 +3,7 @@ import type * as FernDocs from "@fern-api/fdr-sdk/docs"; import type * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import titleCase from "@fern-api/ui-core-utils/titleCase"; import cn from "clsx"; -import { compact } from "lodash-es"; +import { compact } from "es-toolkit/array"; import { useCallback, useEffect, useMemo } from "react"; import { capturePosthogEvent } from "../../../analytics/posthog"; import { Markdown } from "../../../mdx/Markdown"; diff --git a/packages/ui/app/src/api-reference/types/object/ObjectProperty.tsx b/packages/ui/app/src/api-reference/types/object/ObjectProperty.tsx index 25d577bef5..bbf5174717 100644 --- a/packages/ui/app/src/api-reference/types/object/ObjectProperty.tsx +++ b/packages/ui/app/src/api-reference/types/object/ObjectProperty.tsx @@ -1,7 +1,7 @@ import * as ApiDefinition from "@fern-api/fdr-sdk/api-definition"; import * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import cn from "clsx"; -import { compact } from "lodash-es"; +import { compact } from "es-toolkit/array"; import { forwardRef, memo, useCallback, useEffect, useMemo, useRef, useState } from "react"; import { capturePosthogEvent } from "../../../analytics/posthog"; import { useIsApiReferencePaginated, useRouteListener } from "../../../atoms"; diff --git a/packages/ui/app/src/api-reference/utils/getAllObjectProperties.ts b/packages/ui/app/src/api-reference/utils/getAllObjectProperties.ts index 07a3fae0e1..7471de2365 100644 --- a/packages/ui/app/src/api-reference/utils/getAllObjectProperties.ts +++ b/packages/ui/app/src/api-reference/utils/getAllObjectProperties.ts @@ -1,5 +1,5 @@ import type { APIV1Read } from "@fern-api/fdr-sdk/client/types"; -import { sortBy } from "lodash-es"; +import { sortBy } from "es-toolkit/array"; export function getAllObjectProperties( object: APIV1Read.ObjectType, @@ -21,7 +21,7 @@ export function getAllObjectProperties( const filteredExtendedProperties = extendedProperties.filter( (extendedProperty) => !propertyKeys.has(extendedProperty.key), ); - return sortBy([...object.properties, ...filteredExtendedProperties], (property) => property.key); + return sortBy([...object.properties, ...filteredExtendedProperties], [(property) => property.key]); } function resolveTypeByIdRecursive( diff --git a/packages/ui/app/src/api-reference/utils/getErrorNameForStatus.ts b/packages/ui/app/src/api-reference/utils/getErrorNameForStatus.ts deleted file mode 100644 index f16d2a7e52..0000000000 --- a/packages/ui/app/src/api-reference/utils/getErrorNameForStatus.ts +++ /dev/null @@ -1,22 +0,0 @@ -export const COMMON_ERROR_NAMES: Record = { - 400: "Bad Request", - 401: "Unauthorized", - 402: "Payment Required", - 403: "Forbidden", - 404: "Not Found", - 405: "Method Not Allowed", - 409: "Conflict", - 412: "Precondition Failed", - 413: "Payload Too Large", - 422: "Unprocessable Entity", - 429: "Too Many Requests", - 500: "Internal Server Error", - 501: "Not Implemented", - 502: "Bad Gateway", - 503: "Service Unavailable", - 504: "Gateway Timeout", -}; - -export function getErrorNameForStatus(statusCode: number): string { - return COMMON_ERROR_NAMES[statusCode] ?? "Unknown"; -} diff --git a/packages/ui/app/src/atoms/auth.ts b/packages/ui/app/src/atoms/auth.ts index ad6fb7226f..739218c564 100644 --- a/packages/ui/app/src/atoms/auth.ts +++ b/packages/ui/app/src/atoms/auth.ts @@ -1,7 +1,7 @@ import type { FernUser } from "@fern-ui/fern-docs-auth"; +import { isEqual } from "es-toolkit/predicate"; import { useAtomValue } from "jotai"; import { selectAtom } from "jotai/utils"; -import { isEqual } from "lodash-es"; import { DOCS_ATOM } from "./docs"; export const FERN_USER_ATOM = selectAtom(DOCS_ATOM, (docs) => docs.user, isEqual); diff --git a/packages/ui/app/src/atoms/files.ts b/packages/ui/app/src/atoms/files.ts index 52891e4140..e127611586 100644 --- a/packages/ui/app/src/atoms/files.ts +++ b/packages/ui/app/src/atoms/files.ts @@ -1,7 +1,7 @@ import type { DocsV1Read } from "@fern-api/fdr-sdk/client/types"; +import { isEqual } from "es-toolkit/predicate"; import { atom, useAtomValue } from "jotai"; import { selectAtom } from "jotai/utils"; -import { isEqual } from "lodash-es"; import { useMemoOne } from "use-memo-one"; import { DOCS_ATOM } from "./docs"; diff --git a/packages/ui/app/src/atoms/flags.ts b/packages/ui/app/src/atoms/flags.ts index a5e1d17924..b370713820 100644 --- a/packages/ui/app/src/atoms/flags.ts +++ b/packages/ui/app/src/atoms/flags.ts @@ -1,7 +1,7 @@ import type { FeatureFlags } from "@fern-ui/fern-docs-utils"; +import { isEqual } from "es-toolkit/predicate"; import { useAtomValue } from "jotai"; import { selectAtom } from "jotai/utils"; -import { isEqual } from "lodash-es"; import { DOCS_ATOM } from "./docs"; export const FEATURE_FLAGS_ATOM = selectAtom(DOCS_ATOM, (docs) => docs.featureFlags, isEqual); diff --git a/packages/ui/app/src/atoms/layout.ts b/packages/ui/app/src/atoms/layout.ts index d8aaeaa3cc..0f36c2c6eb 100644 --- a/packages/ui/app/src/atoms/layout.ts +++ b/packages/ui/app/src/atoms/layout.ts @@ -1,7 +1,7 @@ import type { DocsV1Read } from "@fern-api/fdr-sdk/client/types"; +import { isEqual } from "es-toolkit/predicate"; import { atom } from "jotai"; import { selectAtom } from "jotai/utils"; -import { isEqual } from "lodash-es"; import { ANNOUNCEMENT_HEIGHT_ATOM } from "./announcement"; import { DOCS_ATOM } from "./docs"; import { TABS_ATOM } from "./navigation"; diff --git a/packages/ui/app/src/atoms/navigation.ts b/packages/ui/app/src/atoms/navigation.ts index 281c45e333..3d1d1da2ef 100644 --- a/packages/ui/app/src/atoms/navigation.ts +++ b/packages/ui/app/src/atoms/navigation.ts @@ -2,9 +2,9 @@ import type { ApiDefinition } from "@fern-api/fdr-sdk/api-definition"; import type { DocsV1Read } from "@fern-api/fdr-sdk/client/types"; import * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import { SidebarTab, VersionSwitcherInfo } from "@fern-ui/fdr-utils"; +import { isEqual } from "es-toolkit/predicate"; import { atom, useAtomValue } from "jotai"; import { selectAtom } from "jotai/utils"; -import { isEqual } from "lodash-es"; import { DocsContent } from "../resolver/DocsContent"; import { DOCS_ATOM } from "./docs"; import { SLUG_ATOM } from "./location"; diff --git a/packages/ui/app/src/atoms/theme.ts b/packages/ui/app/src/atoms/theme.ts index 4f7da4b2e6..dd7aa21e70 100644 --- a/packages/ui/app/src/atoms/theme.ts +++ b/packages/ui/app/src/atoms/theme.ts @@ -1,7 +1,7 @@ import { ColorsConfig } from "@fern-ui/fdr-utils"; +import { isEqual } from "es-toolkit/predicate"; import { atom, useAtom, useAtomValue } from "jotai"; import { atomWithRefresh, selectAtom } from "jotai/utils"; -import { isEqual } from "lodash-es"; import { noop } from "ts-essentials"; import { useCallbackOne } from "use-memo-one"; import { z } from "zod"; diff --git a/packages/ui/app/src/atoms/utils/atomWithStorageString.ts b/packages/ui/app/src/atoms/utils/atomWithStorageString.ts index 00f686e5fe..26b0476739 100644 --- a/packages/ui/app/src/atoms/utils/atomWithStorageString.ts +++ b/packages/ui/app/src/atoms/utils/atomWithStorageString.ts @@ -1,4 +1,4 @@ -import { identity } from "lodash-es"; +import identity from "@fern-api/ui-core-utils/identity"; import { z } from "zod"; import { atomWithStorageValidation } from "./atomWithStorageValidation"; @@ -13,5 +13,10 @@ export function atomWithStorageString( getOnInit?: boolean; } = {}, ): ReturnType> { - return atomWithStorageValidation(key, value, { validate, serialize: identity, parse: identity, getOnInit }); + return atomWithStorageValidation(key, value, { + validate, + serialize: identity, + parse: validate?.parse, + getOnInit, + }); } diff --git a/packages/ui/app/src/changelog/ChangelogPage.tsx b/packages/ui/app/src/changelog/ChangelogPage.tsx index 31533c18fe..a853876a71 100644 --- a/packages/ui/app/src/changelog/ChangelogPage.tsx +++ b/packages/ui/app/src/changelog/ChangelogPage.tsx @@ -2,8 +2,8 @@ import type { FernNavigation } from "@fern-api/fdr-sdk"; import type * as FernDocs from "@fern-api/fdr-sdk/docs"; import { EMPTY_ARRAY } from "@fern-api/ui-core-utils"; import clsx from "clsx"; +import { chunk } from "es-toolkit/array"; import { atom, useAtomValue } from "jotai"; -import { chunk } from "lodash-es"; import { Fragment, ReactElement, useEffect, useMemo } from "react"; import { useMemoOne } from "use-memo-one"; import { IS_READY_ATOM, LOCATION_ATOM, SCROLL_BODY_ATOM, SIDEBAR_ROOT_NODE_ATOM } from "../atoms"; diff --git a/packages/ui/app/src/components/FernErrorBoundary.tsx b/packages/ui/app/src/components/FernErrorBoundary.tsx index 20e6c31f80..98d74581ef 100644 --- a/packages/ui/app/src/components/FernErrorBoundary.tsx +++ b/packages/ui/app/src/components/FernErrorBoundary.tsx @@ -1,7 +1,7 @@ import { FernButton } from "@fern-ui/components"; import clsx from "clsx"; +import { memoize } from "es-toolkit/function"; import { RefreshDouble, WarningTriangle } from "iconoir-react"; -import { memoize } from "lodash-es"; import { Router, useRouter } from "next/router"; import React, { PropsWithChildren, ReactElement, useEffect } from "react"; import { ErrorBoundary, FallbackProps } from "react-error-boundary"; diff --git a/packages/ui/app/src/header/Header.tsx b/packages/ui/app/src/header/Header.tsx index 798efc292a..da98eeff66 100644 --- a/packages/ui/app/src/header/Header.tsx +++ b/packages/ui/app/src/header/Header.tsx @@ -1,9 +1,9 @@ import type { DocsV1Read } from "@fern-api/fdr-sdk/client/types"; import { FernButton, FernButtonGroup } from "@fern-ui/components"; import cn from "clsx"; +import { isEqual } from "es-toolkit/predicate"; import { ArrowRight, Search } from "iconoir-react"; import { useAtomValue } from "jotai"; -import { isEqual } from "lodash-es"; import { CSSProperties, PropsWithChildren, forwardRef, memo } from "react"; import { NAVBAR_LINKS_ATOM, SEARCHBAR_PLACEMENT_ATOM, useColors, useOpenSearchDialog } from "../atoms"; import { FernLinkButton } from "../components/FernLinkButton"; diff --git a/packages/ui/app/src/hooks/useStandardProxyEnvironment.ts b/packages/ui/app/src/hooks/useStandardProxyEnvironment.ts index fc21cd9664..c64498e515 100644 --- a/packages/ui/app/src/hooks/useStandardProxyEnvironment.ts +++ b/packages/ui/app/src/hooks/useStandardProxyEnvironment.ts @@ -1,5 +1,5 @@ import { withDefaultProtocol } from "@fern-api/ui-core-utils"; -import { once } from "lodash-es"; +import { once } from "es-toolkit/function"; import { useBasePath, useFeatureFlags } from "../atoms"; import { useApiRoute } from "./useApiRoute"; diff --git a/packages/ui/app/src/index.ts b/packages/ui/app/src/index.ts index 15ee6d21af..4c365f5679 100644 --- a/packages/ui/app/src/index.ts +++ b/packages/ui/app/src/index.ts @@ -4,7 +4,6 @@ export type { DocsProps } from "./atoms"; export * from "./docs/DocsPage"; export * from "./docs/NextApp"; export { getApiRouteSupplier } from "./hooks/useApiRoute"; -export { getFrontmatter } from "./mdx/frontmatter"; export * from "./mdx/types"; export { Stream } from "./playground/Stream"; export { ProxyRequestSchema } from "./playground/types"; diff --git a/packages/ui/app/src/mdx/bundlers/index.ts b/packages/ui/app/src/mdx/bundlers/index.ts index 8712ef51da..a68255a8f3 100644 --- a/packages/ui/app/src/mdx/bundlers/index.ts +++ b/packages/ui/app/src/mdx/bundlers/index.ts @@ -1,5 +1,5 @@ import type * as FernDocs from "@fern-api/fdr-sdk/docs"; -import { once } from "lodash-es"; +import { once } from "es-toolkit/function"; import { MDX_SERIALIZER } from "../bundler"; const BUNDLERS: Record Promise> = { diff --git a/packages/ui/app/src/mdx/bundlers/mdx-bundler.ts b/packages/ui/app/src/mdx/bundlers/mdx-bundler.ts index 11c40ffb6b..208889fba7 100644 --- a/packages/ui/app/src/mdx/bundlers/mdx-bundler.ts +++ b/packages/ui/app/src/mdx/bundlers/mdx-bundler.ts @@ -1,6 +1,7 @@ import type * as FernDocs from "@fern-api/fdr-sdk/docs"; +import { customHeadingHandler } from "@fern-ui/fern-docs-mdx"; import type { Options } from "@mdx-js/esbuild"; -import { mapKeys } from "lodash-es"; +import { mapKeys } from "es-toolkit/object"; import { bundleMDX } from "mdx-bundler"; import path, { dirname } from "path"; import rehypeKatex from "rehype-katex"; @@ -14,7 +15,6 @@ import { rehypeFernCode } from "../plugins/rehypeFernCode"; import { rehypeFernComponents } from "../plugins/rehypeFernComponents"; import { mergeMatter, rehypeFernLayout } from "../plugins/rehypeLayout"; import { rehypeSqueezeParagraphs } from "../plugins/rehypeSqueezeParagraphs"; -import { customHeadingHandler } from "../plugins/remarkRehypeHandlers"; import { remarkSqueezeParagraphs } from "../plugins/remarkSqueezeParagraphs"; import type { FernSerializeMdxOptions } from "../types"; import { replaceBrokenBrTags } from "./replaceBrokenBrTags"; diff --git a/packages/ui/app/src/mdx/bundlers/next-mdx-remote.ts b/packages/ui/app/src/mdx/bundlers/next-mdx-remote.ts index d4b23d58ef..946aa4de5a 100644 --- a/packages/ui/app/src/mdx/bundlers/next-mdx-remote.ts +++ b/packages/ui/app/src/mdx/bundlers/next-mdx-remote.ts @@ -1,4 +1,5 @@ import type * as FernDocs from "@fern-api/fdr-sdk/docs"; +import { customHeadingHandler } from "@fern-ui/fern-docs-mdx"; import { serialize } from "next-mdx-remote/serialize"; import rehypeKatex from "rehype-katex"; import rehypeSlug from "rehype-slug"; @@ -7,13 +8,11 @@ import remarkGfm from "remark-gfm"; import remarkMath from "remark-math"; import remarkSmartypants from "remark-smartypants"; import type { PluggableList } from "unified"; -import { FernDocsFrontmatter } from "../frontmatter"; import { rehypeFernCode } from "../plugins/rehypeFernCode"; import { rehypeFernComponents } from "../plugins/rehypeFernComponents"; import { rehypeFernLayout } from "../plugins/rehypeLayout"; import { rehypeSanitizeJSX } from "../plugins/rehypeSanitizeJSX"; import { rehypeSqueezeParagraphs } from "../plugins/rehypeSqueezeParagraphs"; -import { customHeadingHandler } from "../plugins/remarkRehypeHandlers"; import { remarkSqueezeParagraphs } from "../plugins/remarkSqueezeParagraphs"; import type { FernSerializeMdxOptions } from "../types"; import { replaceBrokenBrTags } from "./replaceBrokenBrTags"; @@ -103,7 +102,7 @@ export async function serializeMdx( content = replaceBrokenBrTags(content); try { - const result = await serialize, FernDocsFrontmatter>(content, { + const result = await serialize, FernDocs.Frontmatter>(content, { scope: {}, mdxOptions: withDefaultMdxOptions(options), parseFrontmatter: true, diff --git a/packages/ui/app/src/mdx/plugins/remarkRehypeHandlers.ts b/packages/ui/app/src/mdx/plugins/remarkRehypeHandlers.ts deleted file mode 100644 index 0d63996537..0000000000 --- a/packages/ui/app/src/mdx/plugins/remarkRehypeHandlers.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Element } from "hast"; -import type { Heading } from "mdast"; -import { State } from "mdast-util-to-hast"; - -export function customHeadingHandler(state: State, node: Heading): Element { - let id: string | undefined; - const children = state.all(node).map((child) => { - if (child.type === "text") { - // extract [#anchor] from heading text - const match = child.value.match(/^(.*?)(?:\s*\[#([^\]]+)\])?$/); - const [, text, anchor] = match || []; - if (text != null && anchor != null) { - id = anchor; - return { - ...child, - value: text, - }; - } - } - - return child; - }); - const result: Element = { - type: "element", - tagName: "h" + node.depth, - properties: { id }, - children, - }; - state.patch(node, result); - return state.applyData(node, result); -} diff --git a/packages/ui/app/src/playground/PlaygroundAuthorizationForm.tsx b/packages/ui/app/src/playground/PlaygroundAuthorizationForm.tsx index 39400fc22c..b8e7155615 100644 --- a/packages/ui/app/src/playground/PlaygroundAuthorizationForm.tsx +++ b/packages/ui/app/src/playground/PlaygroundAuthorizationForm.tsx @@ -14,7 +14,6 @@ import { import { useBooleanState } from "@fern-ui/react-commons"; import { HelpCircle, Key, User } from "iconoir-react"; import { atom, useAtom, useAtomValue, useSetAtom } from "jotai"; -import { isEmpty } from "lodash-es"; import { useRouter } from "next/router"; import { FC, ReactElement, SetStateAction, useCallback, useEffect, useState } from "react"; import urlJoin from "url-join"; @@ -581,6 +580,10 @@ export function PlaygroundAuthorizationFormCard({ ); } +function isEmpty(str: string | undefined): boolean { + return str == null || str.trim().length === 0; +} + function isAuthed(auth: APIV1Read.ApiAuth, authState: PlaygroundAuthState): boolean { return visitDiscriminatedUnion(auth)._visit({ bearerAuth: () => !isEmpty(authState.bearerAuth?.token.trim()), diff --git a/packages/ui/app/src/playground/PlaygroundWebSocketHandshakeForm.tsx b/packages/ui/app/src/playground/PlaygroundWebSocketHandshakeForm.tsx index f6d0ccab56..66579a49df 100644 --- a/packages/ui/app/src/playground/PlaygroundWebSocketHandshakeForm.tsx +++ b/packages/ui/app/src/playground/PlaygroundWebSocketHandshakeForm.tsx @@ -1,6 +1,5 @@ import type { WebSocketContext } from "@fern-api/fdr-sdk/api-definition"; import { FernCard } from "@fern-ui/components"; -import isEmpty from "lodash-es/isEmpty"; import { Dispatch, FC, SetStateAction, useCallback } from "react"; import { Callout } from "../mdx/components/callout"; import { PlaygroundAuthorizationFormCard } from "./PlaygroundAuthorizationForm"; @@ -54,10 +53,10 @@ export const PlaygroundWebSocketHandshakeForm: FC 0 ? `\n body: ${body},` : ""} }); const body = await response.json(); diff --git a/packages/ui/app/src/playground/endpoint/PlaygroundEndpoint.tsx b/packages/ui/app/src/playground/endpoint/PlaygroundEndpoint.tsx index ae9e871e7c..b45cfdef3c 100644 --- a/packages/ui/app/src/playground/endpoint/PlaygroundEndpoint.tsx +++ b/packages/ui/app/src/playground/endpoint/PlaygroundEndpoint.tsx @@ -4,9 +4,9 @@ import { unknownToString } from "@fern-api/ui-core-utils"; import { FernTooltipProvider } from "@fern-ui/components"; import { Loadable, failed, loaded, loading, notStartedLoading } from "@fern-ui/loadable"; import { useEventCallback } from "@fern-ui/react-commons"; +import { mapValues } from "es-toolkit/object"; import { SendSolid } from "iconoir-react"; import { useSetAtom } from "jotai"; -import { mapValues } from "lodash-es"; import { ReactElement, useCallback, useState } from "react"; import { PLAYGROUND_AUTH_STATE_ATOM, diff --git a/packages/ui/app/src/playground/endpoint/PlaygroundEndpointForm.tsx b/packages/ui/app/src/playground/endpoint/PlaygroundEndpointForm.tsx index 4a4045f857..288accb275 100644 --- a/packages/ui/app/src/playground/endpoint/PlaygroundEndpointForm.tsx +++ b/packages/ui/app/src/playground/endpoint/PlaygroundEndpointForm.tsx @@ -1,7 +1,6 @@ import type { EndpointContext } from "@fern-api/fdr-sdk/api-definition"; import { unwrapObjectType, unwrapReference } from "@fern-api/fdr-sdk/api-definition"; import { EMPTY_ARRAY, visitDiscriminatedUnion } from "@fern-api/ui-core-utils"; -import { isEmpty } from "lodash-es"; import { Dispatch, FC, SetStateAction, useCallback, useMemo } from "react"; import { PlaygroundFileUploadForm } from "../form/PlaygroundFileUploadForm"; import { PlaygroundObjectPropertiesForm } from "../form/PlaygroundObjectPropertyForm"; @@ -101,7 +100,7 @@ export const PlaygroundEndpointForm: FC = ({ return ( <> - {!isEmpty(headers) && ( + {headers != null && headers.length > 0 && ( = ({ )} - {!isEmpty(endpoint.pathParameters) && ( + {endpoint.pathParameters != null && endpoint.pathParameters.length > 0 && ( = ({ )} - {!isEmpty(endpoint.queryParameters) && ( + {endpoint.queryParameters != null && endpoint.queryParameters.length > 0 && ( time: {round(response.value.time, 2)}ms - {response.value.type === "json" && !isEmpty(response.value.size) && ( - - size: {response.value.size}b - - )} + {response.value.type === "json" && + response.value.size != null && + response.value.size.trim().length > 0 && ( + + size: {response.value.size}b + + )}
)} diff --git a/packages/ui/app/src/playground/form/PlaygroundEnumForm.tsx b/packages/ui/app/src/playground/form/PlaygroundEnumForm.tsx index a6096ea281..0c7608b6af 100644 --- a/packages/ui/app/src/playground/form/PlaygroundEnumForm.tsx +++ b/packages/ui/app/src/playground/form/PlaygroundEnumForm.tsx @@ -1,7 +1,7 @@ import { EnumValue } from "@fern-api/fdr-sdk/api-definition"; import { FernButton, FernDropdown } from "@fern-ui/components"; +import { sortBy } from "es-toolkit/array"; import { NavArrowDown } from "iconoir-react"; -import { sortBy } from "lodash-es"; import dynamic from "next/dynamic"; import { memo, useMemo } from "react"; @@ -20,7 +20,7 @@ export const PlaygroundEnumForm = memo((props) => { const { enumValues, onChange, value, id, onFocus, disabled } = props; const options = useMemo( () => - sortBy(enumValues, "value").map( + sortBy(enumValues, ["value"]).map( (enumValue): FernDropdown.Option => ({ type: "value", label: enumValue.value, diff --git a/packages/ui/app/src/playground/form/PlaygroundFileUploadForm.tsx b/packages/ui/app/src/playground/form/PlaygroundFileUploadForm.tsx index acf14c485b..f853b01ffb 100644 --- a/packages/ui/app/src/playground/form/PlaygroundFileUploadForm.tsx +++ b/packages/ui/app/src/playground/form/PlaygroundFileUploadForm.tsx @@ -1,7 +1,7 @@ import { FernButton, FernButtonGroup, FernCard } from "@fern-ui/components"; import cn from "clsx"; +import { uniqBy } from "es-toolkit/array"; import { Page, PagePlusIn, Xmark } from "iconoir-react"; -import { uniqBy } from "lodash-es"; import numeral from "numeral"; import { ChangeEvent, DragEventHandler, memo, useEffect, useRef, useState } from "react"; import { WithLabelInternal } from "../WithLabel"; diff --git a/packages/ui/app/src/playground/utils/__test__/breadcrumb.test.ts b/packages/ui/app/src/playground/utils/__test__/breadcrumb.test.ts index a78b833555..4b1152f243 100644 --- a/packages/ui/app/src/playground/utils/__test__/breadcrumb.test.ts +++ b/packages/ui/app/src/playground/utils/__test__/breadcrumb.test.ts @@ -1,4 +1,4 @@ -import { identity } from "lodash-es"; +import identity from "@fern-api/ui-core-utils/identity"; import { arraylcd, createBreadcrumbSlicer } from "../breadcrumb"; const trimBreadcrumb = createBreadcrumbSlicer({ diff --git a/packages/ui/app/src/playground/utils/endpoints.ts b/packages/ui/app/src/playground/utils/endpoints.ts index 9f2ecfac32..029146e9c4 100644 --- a/packages/ui/app/src/playground/utils/endpoints.ts +++ b/packages/ui/app/src/playground/utils/endpoints.ts @@ -1,7 +1,7 @@ import type { EndpointContext } from "@fern-api/fdr-sdk/api-definition"; import { ExampleEndpointCall } from "@fern-api/fdr-sdk/api-definition"; import { EMPTY_OBJECT } from "@fern-api/ui-core-utils"; -import { mapValues } from "lodash-es"; +import { mapValues } from "es-toolkit/object"; import { PlaygroundEndpointRequestFormState, PlaygroundFormDataEntryValue } from "../types"; import { getEmptyValueForHttpRequestBody, getEmptyValueForObjectProperties } from "./default-values"; diff --git a/packages/ui/app/src/playground/utils/oauth.ts b/packages/ui/app/src/playground/utils/oauth.ts index edd9e39f2a..af7f32fbdd 100644 --- a/packages/ui/app/src/playground/utils/oauth.ts +++ b/packages/ui/app/src/playground/utils/oauth.ts @@ -1,8 +1,8 @@ import type { APIV1Read } from "@fern-api/fdr-sdk"; import { buildEndpointUrl, type EndpointDefinition } from "@fern-api/fdr-sdk/api-definition"; import { unknownToString, visitDiscriminatedUnion } from "@fern-api/ui-core-utils"; +import { mapValues } from "es-toolkit/object"; import jsonpath from "jsonpath"; -import { mapValues } from "lodash-es"; import { executeProxyRest } from "../fetch-utils/executeProxyRest"; import { PlaygroundEndpointRequestFormState, ProxyRequest } from "../types"; import { serializeFormStateBody } from "./serialize"; diff --git a/packages/ui/app/src/playground/utils/serialize.ts b/packages/ui/app/src/playground/utils/serialize.ts index 9ab5446a4a..48df4428d1 100644 --- a/packages/ui/app/src/playground/utils/serialize.ts +++ b/packages/ui/app/src/playground/utils/serialize.ts @@ -1,6 +1,6 @@ import { FormDataField, HttpRequestBodyShape } from "@fern-api/fdr-sdk/api-definition"; import { assertNever, isNonNullish } from "@fern-api/ui-core-utils"; -import { compact } from "lodash-es"; +import { compact, flatten } from "es-toolkit/array"; import { blobToDataURL } from "../fetch-utils/blobToDataURL"; import { PlaygroundFormStateBody, ProxyRequest, SerializableFile, SerializableFormDataEntryValue } from "../types"; @@ -53,7 +53,7 @@ export async function serializeFormStateBody( // this is a hack to allow the API Playground to send JSON blobs in form data // revert this once we have a better solution contentType: - compact(property?.contentType)[0] ?? + compact(flatten([property?.contentType]))[0] ?? (usesApplicationJsonInFormDataValue ? "application/json" : undefined), }; break; diff --git a/packages/ui/app/src/resolver/resolveChangelogEntryPage.ts b/packages/ui/app/src/resolver/resolveChangelogEntryPage.ts index bd16c6a07b..ae91d1a315 100644 --- a/packages/ui/app/src/resolver/resolveChangelogEntryPage.ts +++ b/packages/ui/app/src/resolver/resolveChangelogEntryPage.ts @@ -1,8 +1,7 @@ import type { DocsV1Read } from "@fern-api/fdr-sdk"; import * as FernNavigation from "@fern-api/fdr-sdk/navigation"; -import { reverse } from "lodash-es"; +import { getFrontmatter } from "@fern-ui/fern-docs-mdx"; import type { MDX_SERIALIZER } from "../mdx/bundler"; -import { getFrontmatter } from "../mdx/frontmatter"; import type { FernSerializeMdxOptions } from "../mdx/types"; import type { DocsContent } from "./DocsContent"; @@ -25,7 +24,7 @@ export async function resolveChangelogEntryPage({ mdxOptions, neighbors, }: ResolveChangelogEntryPageOptions): Promise { - const changelogNode = reverse(parents).find((n): n is FernNavigation.ChangelogNode => n.type === "changelog"); + const changelogNode = [...parents].reverse().find((n): n is FernNavigation.ChangelogNode => n.type === "changelog"); if (changelogNode == null) { throw new Error("Changelog node not found"); } diff --git a/packages/ui/app/src/resolver/resolveDocsContent.ts b/packages/ui/app/src/resolver/resolveDocsContent.ts index cc46808fcd..c9aa3c0d72 100644 --- a/packages/ui/app/src/resolver/resolveDocsContent.ts +++ b/packages/ui/app/src/resolver/resolveDocsContent.ts @@ -3,7 +3,7 @@ import type { APIV1Read, DocsV1Read } from "@fern-api/fdr-sdk/client/types"; import * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import { ApiDefinitionLoader, MarkdownLoader } from "@fern-ui/fern-docs-server"; import type { FeatureFlags } from "@fern-ui/fern-docs-utils"; -import { mapValues } from "lodash-es"; +import { mapValues } from "es-toolkit/object"; import type { MDX_SERIALIZER } from "../mdx/bundler"; import type { FernSerializeMdxOptions } from "../mdx/types"; import type { DocsContent } from "./DocsContent"; diff --git a/packages/ui/app/src/resolver/resolveSubtitle.ts b/packages/ui/app/src/resolver/resolveSubtitle.ts index 6d02fa9c00..a324bb5c83 100644 --- a/packages/ui/app/src/resolver/resolveSubtitle.ts +++ b/packages/ui/app/src/resolver/resolveSubtitle.ts @@ -1,8 +1,8 @@ import type { DocsV1Read } from "@fern-api/fdr-sdk"; import type * as FernDocs from "@fern-api/fdr-sdk/docs"; import * as FernNavigation from "@fern-api/fdr-sdk/navigation"; +import { getFrontmatter } from "@fern-ui/fern-docs-mdx"; import type { MDX_SERIALIZER } from "../mdx/bundler"; -import { getFrontmatter } from "../mdx/frontmatter"; export async function resolveSubtitle( node: FernNavigation.NavigationNodeNeighbor, diff --git a/packages/ui/app/src/search/algolia/AlgoliaSearchDialog.tsx b/packages/ui/app/src/search/algolia/AlgoliaSearchDialog.tsx index 88392a52dc..0faef96ee9 100644 --- a/packages/ui/app/src/search/algolia/AlgoliaSearchDialog.tsx +++ b/packages/ui/app/src/search/algolia/AlgoliaSearchDialog.tsx @@ -1,6 +1,6 @@ import { createSearchPlaceholderWithVersion } from "@fern-ui/search-utils"; import * as Dialog from "@radix-ui/react-dialog"; -import { SearchClient } from "algoliasearch"; +import type { LiteClient as SearchClient } from "algoliasearch/lite"; import clsx from "clsx"; import { useAtomValue, useSetAtom } from "jotai"; import { ReactElement, ReactNode, useMemo, useRef } from "react"; diff --git a/packages/ui/app/src/search/algolia/useAlgoliaSearchClient.ts b/packages/ui/app/src/search/algolia/useAlgoliaSearchClient.ts index 9b5f850e9a..b23d330597 100644 --- a/packages/ui/app/src/search/algolia/useAlgoliaSearchClient.ts +++ b/packages/ui/app/src/search/algolia/useAlgoliaSearchClient.ts @@ -1,5 +1,5 @@ import { assertNonNullish } from "@fern-api/ui-core-utils"; -import algolia, { SearchClient } from "algoliasearch"; +import { liteClient as algoliasearch, type LiteClient as SearchClient } from "algoliasearch/lite"; import { useAtomValue } from "jotai"; import { useMemo } from "react"; import { CURRENT_VERSION_ID_ATOM } from "../../atoms"; @@ -16,7 +16,7 @@ export function useAlgoliaSearchClient(): [SearchClient, index: string] | undefi if (searchConfig.algolia.searchApiKey.type === "unversioned") { return [ - algolia(searchConfig.algolia.appId, searchConfig.algolia.searchApiKey.value), + algoliasearch(searchConfig.algolia.appId, searchConfig.algolia.searchApiKey.value), searchConfig.algolia.index, ]; } @@ -31,7 +31,7 @@ export function useAlgoliaSearchClient(): [SearchClient, index: string] | undefi searchApiKey, `Inconsistent State: Did not receive index segment for version "${currentVersionId}". This may indicate a backend bug.`, ); - return [algolia(searchConfig.algolia.appId, searchApiKey), searchConfig.algolia.index]; + return [algoliasearch(searchConfig.algolia.appId, searchApiKey), searchConfig.algolia.index]; } return; }, [currentVersionId, searchConfig]); diff --git a/packages/ui/app/src/seo/getBreadcrumbList.ts b/packages/ui/app/src/seo/getBreadcrumbList.ts index 319d59a21e..66cf0c94e8 100644 --- a/packages/ui/app/src/seo/getBreadcrumbList.ts +++ b/packages/ui/app/src/seo/getBreadcrumbList.ts @@ -2,9 +2,9 @@ import type { DocsV1Read } from "@fern-api/fdr-sdk/client/types"; import type * as FernDocs from "@fern-api/fdr-sdk/docs"; import * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import { withDefaultProtocol } from "@fern-api/ui-core-utils"; +import { getFrontmatter } from "@fern-ui/fern-docs-mdx"; import { JsonLd } from "@fern-ui/next-seo"; import urljoin from "url-join"; -import { getFrontmatter } from "../mdx/frontmatter"; function toUrl(domain: string, slug: FernNavigation.Slug): string { return urljoin(withDefaultProtocol(domain), slug); diff --git a/packages/ui/app/src/seo/getSeoProp.ts b/packages/ui/app/src/seo/getSeoProp.ts index 257f9075b4..0cca3f646c 100644 --- a/packages/ui/app/src/seo/getSeoProp.ts +++ b/packages/ui/app/src/seo/getSeoProp.ts @@ -1,13 +1,13 @@ import { APIV1Read, DocsV1Read } from "@fern-api/fdr-sdk/client/types"; import * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import { assertNonNullish, visitDiscriminatedUnion } from "@fern-api/ui-core-utils"; +import { getFrontmatter } from "@fern-ui/fern-docs-mdx"; import type { LinkTag, MetaTag, NextSeoProps } from "@fern-ui/next-seo"; -import { trim } from "lodash-es"; +import { trim } from "es-toolkit/string"; import { fromMarkdown } from "mdast-util-from-markdown"; import { toHast } from "mdast-util-to-hast"; import { visit } from "unist-util-visit"; import { getToHref } from "../hooks/useHref"; -import { getFrontmatter } from "../mdx/frontmatter"; import { getFontExtension } from "../themes/stylesheet/getFontVariables"; import { getBreadcrumbList } from "./getBreadcrumbList"; diff --git a/packages/ui/app/src/services/registry.ts b/packages/ui/app/src/services/registry.ts index 6e839c9fcb..b51e1822e8 100644 --- a/packages/ui/app/src/services/registry.ts +++ b/packages/ui/app/src/services/registry.ts @@ -1,4 +1,5 @@ -import { FdrClient, once } from "@fern-api/fdr-sdk"; +import { FdrClient } from "@fern-api/fdr-sdk/client"; +import { once } from "es-toolkit/function"; function getEnvironment() { return process.env.NEXT_PUBLIC_FDR_ORIGIN ?? "https://registry.buildwithfern.com"; diff --git a/packages/ui/app/src/sidebar/SidebarLink.tsx b/packages/ui/app/src/sidebar/SidebarLink.tsx index fa5490351a..d25dd80eab 100644 --- a/packages/ui/app/src/sidebar/SidebarLink.tsx +++ b/packages/ui/app/src/sidebar/SidebarLink.tsx @@ -1,8 +1,8 @@ import type * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import { FernTooltip, RemoteFontAwesomeIcon } from "@fern-ui/components"; import cn, { clsx } from "clsx"; +import { range } from "es-toolkit/math"; import { Lock, NavArrowDown } from "iconoir-react"; -import { range } from "lodash-es"; import { Url } from "next/dist/shared/lib/router/router"; import { HTMLAttributeAnchorTarget, diff --git a/packages/ui/app/src/syntax-highlighting/FernSyntaxHighlighterTokens.tsx b/packages/ui/app/src/syntax-highlighting/FernSyntaxHighlighterTokens.tsx index f1928b2f51..e2ba215469 100644 --- a/packages/ui/app/src/syntax-highlighting/FernSyntaxHighlighterTokens.tsx +++ b/packages/ui/app/src/syntax-highlighting/FernSyntaxHighlighterTokens.tsx @@ -1,7 +1,7 @@ import { FernScrollArea } from "@fern-ui/components"; import cn from "clsx"; +import { isEqual } from "es-toolkit/predicate"; import type { Element } from "hast"; -import { isEqual } from "lodash-es"; import { forwardRef, memo, useImperativeHandle, useMemo, useRef } from "react"; import { visit } from "unist-util-visit"; import { HastToJSX } from "../mdx/common/HastToJsx"; diff --git a/packages/ui/app/src/syntax-highlighting/fernShiki.ts b/packages/ui/app/src/syntax-highlighting/fernShiki.ts index 440f79951c..a8aa08768b 100644 --- a/packages/ui/app/src/syntax-highlighting/fernShiki.ts +++ b/packages/ui/app/src/syntax-highlighting/fernShiki.ts @@ -1,6 +1,6 @@ +import { memoize } from "es-toolkit/function"; import type { Root } from "hast"; import { h } from "hastscript"; -import memoize from "lodash-es/memoize"; import { useCallback, useEffect, useState } from "react"; import { bundledLanguages, diff --git a/packages/ui/app/src/type-shorthand/index.tsx b/packages/ui/app/src/type-shorthand/index.tsx index 7b5a9ed2c7..b1337ba956 100644 --- a/packages/ui/app/src/type-shorthand/index.tsx +++ b/packages/ui/app/src/type-shorthand/index.tsx @@ -1,6 +1,6 @@ import { TypeDefinition, TypeShapeOrReference, unwrapReference } from "@fern-api/fdr-sdk/api-definition"; import { unknownToString, visitDiscriminatedUnion } from "@fern-api/ui-core-utils"; -import { uniq } from "lodash-es"; +import { uniq } from "es-toolkit/array"; import { ReactNode } from "react"; export interface TypeShorthandOptions { diff --git a/packages/ui/app/src/util/parseStringStyle.ts b/packages/ui/app/src/util/parseStringStyle.ts index c85adeec1c..6c1b363abd 100644 --- a/packages/ui/app/src/util/parseStringStyle.ts +++ b/packages/ui/app/src/util/parseStringStyle.ts @@ -1,4 +1,4 @@ -import camelCase from "lodash-es/camelCase"; +import { camelCase } from "es-toolkit/string"; import StyleToObject from "style-to-object"; export function parseStringStyle(value: unknown): Record | undefined { diff --git a/packages/ui/app/tsconfig.json b/packages/ui/app/tsconfig.json index c794f169e8..7012b7f706 100644 --- a/packages/ui/app/tsconfig.json +++ b/packages/ui/app/tsconfig.json @@ -44,6 +44,9 @@ { "path": "../fern-docs-server" }, + { + "path": "../fern-docs-mdx" + }, { "path": "../components" } diff --git a/packages/ui/chatbot/package.json b/packages/ui/chatbot/package.json index 85585eb538..d051338a53 100644 --- a/packages/ui/chatbot/package.json +++ b/packages/ui/chatbot/package.json @@ -35,9 +35,9 @@ "@fern-ui/components": "workspace:*", "@radix-ui/colors": "^3.0.0", "clsx": "^2.1.1", + "es-toolkit": "^1.24.0", "hastscript": "^9.0.0", "jotai": "^2.8.1", - "lodash-es": "^4.17.21", "react": "^18.3.1", "react-dom": "^18.3.1", "react-markdown": "^9.0.1", @@ -48,7 +48,6 @@ "@fern-platform/configs": "workspace:*", "@tailwindcss/typography": "^0.5.10", "@types/hast": "^3.0.4", - "@types/lodash-es": "^4.17.12", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "@types/uuid": "^9.0.1", diff --git a/packages/ui/chatbot/src/components/ChatbotModal.tsx b/packages/ui/chatbot/src/components/ChatbotModal.tsx index d7eb7ac7f2..9967639316 100644 --- a/packages/ui/chatbot/src/components/ChatbotModal.tsx +++ b/packages/ui/chatbot/src/components/ChatbotModal.tsx @@ -1,6 +1,6 @@ import { FernScrollArea } from "@fern-ui/components"; import clsx from "clsx"; -import { throttle } from "lodash-es"; +import { throttle } from "es-toolkit/function"; import { forwardRef, useImperativeHandle, useRef, useState } from "react"; import type { Components } from "react-markdown"; import { v4 } from "uuid"; diff --git a/packages/ui/chatbot/src/components/MarkdownContent.tsx b/packages/ui/chatbot/src/components/MarkdownContent.tsx index 67807dbfbe..25c234e2d1 100644 --- a/packages/ui/chatbot/src/components/MarkdownContent.tsx +++ b/packages/ui/chatbot/src/components/MarkdownContent.tsx @@ -1,7 +1,7 @@ import clsx from "clsx"; +import { last } from "es-toolkit/array"; import type { Root } from "hast"; import { h } from "hastscript"; -import { last } from "lodash-es"; import { ReactElement } from "react"; import Markdown, { type Components } from "react-markdown"; import remarkGfm from "remark-gfm"; diff --git a/packages/ui/docs-bundle/next.config.mjs b/packages/ui/docs-bundle/next.config.mjs index 68b20b43d8..8477cf1af7 100644 --- a/packages/ui/docs-bundle/next.config.mjs +++ b/packages/ui/docs-bundle/next.config.mjs @@ -35,7 +35,7 @@ const nextConfig = { transpilePackages: [ "next-mdx-remote", "esbuild", - "lodash-es", + "es-toolkit", /** * Monorepo packages that are not transpiled by default. @@ -44,12 +44,13 @@ const nextConfig = { */ "@fern-api/fdr-sdk", "@fern-api/template-resolver", + "@fern-api/ui-core-utils", "@fern-ui/chatbot", "@fern-ui/components", - "@fern-api/ui-core-utils", "@fern-ui/fdr-utils", "@fern-ui/fern-docs-auth", "@fern-ui/fern-docs-edge-config", + "@fern-ui/fern-docs-mdx", "@fern-ui/fern-docs-utils", "@fern-ui/loadable", "@fern-ui/next-seo", diff --git a/packages/ui/docs-bundle/package.json b/packages/ui/docs-bundle/package.json index 9bdf93ea16..05a8da4f8d 100644 --- a/packages/ui/docs-bundle/package.json +++ b/packages/ui/docs-bundle/package.json @@ -24,29 +24,31 @@ "lint": "pnpm lint:eslint && pnpm lint:style" }, "dependencies": { - "@algolia/requester-fetch": "^4.24.0", + "@algolia/requester-fetch": "^5.8.1", "@aws-sdk/client-s3": "^3.335.0", "@aws-sdk/s3-request-presigner": "^3.574.0", "@fern-api/fdr-sdk": "workspace:*", + "@fern-api/ui-core-utils": "workspace:*", "@fern-api/venus-api-sdk": "^0.1.0", "@fern-fern/fern-docs-sdk": "0.0.5", "@fern-fern/proxy-sdk": "0.0.26", "@fern-ui/chatbot": "workspace:*", "@fern-ui/components": "workspace:*", - "@fern-api/ui-core-utils": "workspace:*", "@fern-ui/fdr-utils": "workspace:*", "@fern-ui/fern-docs-auth": "workspace:*", "@fern-ui/fern-docs-edge-config": "workspace:*", - "@fern-ui/fern-docs-utils": "workspace:*", + "@fern-ui/fern-docs-mdx": "workspace:*", "@fern-ui/fern-docs-server": "workspace:*", + "@fern-ui/fern-docs-utils": "workspace:*", "@fern-ui/search-utils": "workspace:*", "@fern-ui/ui": "workspace:*", "@vercel/analytics": "^1.3.1", "@vercel/kv": "^2.0.0", "@workos-inc/node": "^6.1.0", - "algoliasearch": "^4.24.0", + "algoliasearch": "^5.8.1", "cohere-ai": "^7.9.5", "cssnano": "^6.0.3", + "es-toolkit": "^1.24.0", "esbuild": "0.20.2", "feed": "^4.2.2", "form-data": "4.0.0", diff --git a/packages/ui/docs-bundle/src/pages/api/fern-docs/changelog.ts b/packages/ui/docs-bundle/src/pages/api/fern-docs/changelog.ts index 596bdea257..931cf7f67d 100644 --- a/packages/ui/docs-bundle/src/pages/api/fern-docs/changelog.ts +++ b/packages/ui/docs-bundle/src/pages/api/fern-docs/changelog.ts @@ -4,8 +4,8 @@ import type { DocsV1Read } from "@fern-api/fdr-sdk/client/types"; import * as FernNavigation from "@fern-api/fdr-sdk/navigation"; import { NodeCollector } from "@fern-api/fdr-sdk/navigation"; import { assertNever, withDefaultProtocol } from "@fern-api/ui-core-utils"; +import { getFrontmatter } from "@fern-ui/fern-docs-mdx"; import { COOKIE_FERN_TOKEN } from "@fern-ui/fern-docs-utils"; -import { getFrontmatter } from "@fern-ui/ui"; import { Feed, Item } from "feed"; import { NextApiRequest, NextApiResponse } from "next"; import urlJoin from "url-join"; diff --git a/packages/ui/docs-bundle/src/pages/api/fern-docs/search/algolia/reindex.ts b/packages/ui/docs-bundle/src/pages/api/fern-docs/search/algolia/reindex.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/ui/docs-bundle/src/pages/api/fern-docs/search/cohere.ts b/packages/ui/docs-bundle/src/pages/api/fern-docs/search/cohere.ts index f680959ec5..5d04fd11e9 100644 --- a/packages/ui/docs-bundle/src/pages/api/fern-docs/search/cohere.ts +++ b/packages/ui/docs-bundle/src/pages/api/fern-docs/search/cohere.ts @@ -5,7 +5,7 @@ import { assertNonNullish } from "@fern-api/ui-core-utils"; import { getContentForSearchRecord, getSlugForSearchRecord, getTitleForSearchRecord } from "@fern-ui/search-utils"; import { provideRegistryService } from "@fern-ui/ui"; import { kv } from "@vercel/kv"; -import algoliasearch from "algoliasearch"; +import { algoliasearch } from "algoliasearch"; import { Cohere, CohereClient } from "cohere-ai"; import { ChatMessage } from "cohere-ai/api"; import { NextRequest } from "next/server"; @@ -132,7 +132,8 @@ export default async function handler(req: NextRequest): Promise { // create clients const index = algoliasearch(process.env.NEXT_PUBLIC_ALGOLIA_APP_ID, searchApiKey.body.searchApiKey, { requester: createFetchRequester(), - }).initIndex(process.env.NEXT_PUBLIC_ALGOLIA_SEARCH_INDEX); + }); + const cohere = new CohereClient({ token: process.env.COHERE_API_KEY }); // construct search query @@ -144,7 +145,13 @@ export default async function handler(req: NextRequest): Promise { }); // execute search - const { hits } = await index.search(query.text, { hitsPerPage: 10 }); + const { hits } = await index.searchSingleIndex({ + indexName: process.env.NEXT_PUBLIC_ALGOLIA_SEARCH_INDEX, + searchParams: { + query: query.text, + hitsPerPage: 20, + }, + }); // convert search results to cohere documents const documents: Record[] = hits diff --git a/packages/ui/docs-bundle/src/server/workos.ts b/packages/ui/docs-bundle/src/server/workos.ts index d726fc3352..8d2ee90348 100644 --- a/packages/ui/docs-bundle/src/server/workos.ts +++ b/packages/ui/docs-bundle/src/server/workos.ts @@ -1,5 +1,5 @@ -import { once } from "@fern-api/fdr-sdk"; import WorkOS, { AuthorizationURLOptions } from "@workos-inc/node"; +import { once } from "es-toolkit/function"; export const getWorkOS = once(() => new WorkOS(getWorkOSApiKey())); diff --git a/packages/ui/docs-bundle/tsconfig.json b/packages/ui/docs-bundle/tsconfig.json index 150ceaef97..cf5cd19bd0 100644 --- a/packages/ui/docs-bundle/tsconfig.json +++ b/packages/ui/docs-bundle/tsconfig.json @@ -31,6 +31,9 @@ { "path": "../fern-docs-server" }, + { + "path": "../fern-docs-mdx" + }, { "path": "../../fdr-sdk/tsconfig.build.json" }, diff --git a/packages/ui/fern-docs-mdx/.depcheckrc.json b/packages/ui/fern-docs-mdx/.depcheckrc.json new file mode 100644 index 0000000000..cf8a6564f2 --- /dev/null +++ b/packages/ui/fern-docs-mdx/.depcheckrc.json @@ -0,0 +1 @@ +{ "ignores": ["@fern-platform/configs", "@types/node", "vite", "@types/react"], "ignore-patterns": ["dist"] } diff --git a/packages/ui/fern-docs-mdx/.prettierrc.cjs b/packages/ui/fern-docs-mdx/.prettierrc.cjs new file mode 100644 index 0000000000..39cf0d0b8c --- /dev/null +++ b/packages/ui/fern-docs-mdx/.prettierrc.cjs @@ -0,0 +1 @@ +module.exports = require("../../../.prettierrc.json"); diff --git a/packages/ui/fern-docs-mdx/.stylelintrc.json b/packages/ui/fern-docs-mdx/.stylelintrc.json new file mode 100644 index 0000000000..0d2e3ff61d --- /dev/null +++ b/packages/ui/fern-docs-mdx/.stylelintrc.json @@ -0,0 +1 @@ +{ "extends": ["../../../shared/stylelintrc.shared.json"] } diff --git a/packages/ui/fern-docs-mdx/package.json b/packages/ui/fern-docs-mdx/package.json new file mode 100644 index 0000000000..6477701291 --- /dev/null +++ b/packages/ui/fern-docs-mdx/package.json @@ -0,0 +1,61 @@ +{ + "name": "@fern-ui/fern-docs-mdx", + "version": "0.0.0", + "repository": { + "type": "git", + "url": "https://github.com/fern-api/fern-platform.git", + "directory": "packages/ui/fern-docs-mdx" + }, + "private": true, + "files": [ + "dist" + ], + "type": "module", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "default": "./dist/index.js" + } + }, + "sideEffects": false, + "scripts": { + "clean": "rm -rf ./lib && tsc --build --clean", + "compile": "tsc --build", + "test": "vitest --run --passWithNoTests --globals", + "lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore", + "lint:eslint:fix": "pnpm lint:eslint --fix", + "lint:style": "stylelint 'src/**/*.scss' --allow-empty-input --max-warnings 0", + "lint:style:fix": "pnpm lint:style --fix", + "format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"", + "format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"", + "organize-imports": "organize-imports-cli tsconfig.json", + "depcheck": "depcheck", + "dev": "tsc --watch", + "docs:dev": "pnpm dev" + }, + "dependencies": { + "@fern-api/fdr-sdk": "workspace:*", + "@types/hast": "^3.0.4", + "github-slugger": "^2.0.0", + "gray-matter": "^4.0.3", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-mdx": "^3.0.0", + "mdast-util-to-hast": "^13.1.0", + "mdast-util-to-string": "^4.0.0", + "micromark-extension-mdx": "^2.1.0", + "pnpm": "^9.12.1", + "unist-util-visit": "^5.0.0" + }, + "devDependencies": { + "@fern-platform/configs": "workspace:*", + "@types/mdast": "^4.0.3", + "@types/node": "^18.7.18", + "depcheck": "^1.4.3", + "eslint": "^8.56.0", + "organize-imports-cli": "^0.10.0", + "prettier": "^3.3.2", + "stylelint": "^16.1.0", + "typescript": "5.4.3", + "vitest": "^1.5.0" + } +} diff --git a/packages/ui/fern-docs-mdx/src/__test__/split-into-sections.test.ts b/packages/ui/fern-docs-mdx/src/__test__/split-into-sections.test.ts new file mode 100644 index 0000000000..2756d77a64 --- /dev/null +++ b/packages/ui/fern-docs-mdx/src/__test__/split-into-sections.test.ts @@ -0,0 +1,277 @@ +import { splitMarkdownIntoSections } from "../split-into-sections.js"; + +describe("chunk", () => { + it("should chunk", () => { + const chunks = splitMarkdownIntoSections(` +Some content at the top + +# level 1 heading + +Hello + +# level 1 heading [#custom-anchor] + +Uses a custom anchor + +# level 1 heading + +duplicate heading + +## level 2 heading + +nested heading + +### level 3 heading + +\`\`\`mdx + +# this is not a heading + +\`\`\` + +##### level 5 heading + +deeply nested heading + +## level 2 heading, again + +This should still be nested under level-1-heading-1 + +##### level 3 heading, again + + + +### Step 1 + +This content should not be split, because it's not a direct child of the root + +### Step 2 + + + +### testing stack pop + +#### testing empty section above + +Finished. +`); + expect(chunks).toMatchInlineSnapshot(` + [ + { + "content": "Some content at the top", + "type": "root", + }, + { + "content": "Hello", + "heading": { + "anchor": "level-1-heading", + "depth": 1, + "length": 17, + "start": 26, + "title": "level 1 heading", + }, + "parents": [], + "type": "section", + }, + { + "content": "Uses a custom anchor", + "heading": { + "anchor": "custom-anchor", + "depth": 1, + "length": 34, + "start": 52, + "title": "level 1 heading [#custom-anchor]", + }, + "parents": [], + "type": "section", + }, + { + "content": "duplicate heading", + "heading": { + "anchor": "level-1-heading-1", + "depth": 1, + "length": 17, + "start": 110, + "title": "level 1 heading", + }, + "parents": [], + "type": "section", + }, + { + "content": "nested heading", + "heading": { + "anchor": "level-2-heading", + "depth": 2, + "length": 18, + "start": 148, + "title": "level 2 heading", + }, + "parents": [ + { + "anchor": "level-1-heading-1", + "depth": 1, + "length": 17, + "start": 110, + "title": "level 1 heading", + }, + ], + "type": "section", + }, + { + "content": "\`\`\`mdx + + # this is not a heading + + \`\`\`", + "heading": { + "anchor": "level-3-heading", + "depth": 3, + "length": 19, + "start": 184, + "title": "level 3 heading", + }, + "parents": [ + { + "anchor": "level-1-heading-1", + "depth": 1, + "length": 17, + "start": 110, + "title": "level 1 heading", + }, + { + "anchor": "level-2-heading", + "depth": 2, + "length": 18, + "start": 148, + "title": "level 2 heading", + }, + ], + "type": "section", + }, + { + "content": "deeply nested heading", + "heading": { + "anchor": "level-5-heading", + "depth": 5, + "length": 21, + "start": 243, + "title": "level 5 heading", + }, + "parents": [ + { + "anchor": "level-1-heading-1", + "depth": 1, + "length": 17, + "start": 110, + "title": "level 1 heading", + }, + { + "anchor": "level-2-heading", + "depth": 2, + "length": 18, + "start": 148, + "title": "level 2 heading", + }, + { + "anchor": "level-3-heading", + "depth": 3, + "length": 19, + "start": 184, + "title": "level 3 heading", + }, + ], + "type": "section", + }, + { + "content": "This should still be nested under level-1-heading-1", + "heading": { + "anchor": "level-2-heading-again", + "depth": 2, + "length": 25, + "start": 289, + "title": "level 2 heading, again", + }, + "parents": [ + { + "anchor": "level-1-heading-1", + "depth": 1, + "length": 17, + "start": 110, + "title": "level 1 heading", + }, + ], + "type": "section", + }, + { + "content": " + + ### Step 1 + + This content should not be split, because it's not a direct child of the root + + ### Step 2 + + ", + "heading": { + "anchor": "level-3-heading-again", + "depth": 5, + "length": 28, + "start": 369, + "title": "level 3 heading, again", + }, + "parents": [ + { + "anchor": "level-1-heading-1", + "depth": 1, + "length": 17, + "start": 110, + "title": "level 1 heading", + }, + { + "anchor": "level-2-heading-again", + "depth": 2, + "length": 25, + "start": 289, + "title": "level 2 heading, again", + }, + ], + "type": "section", + }, + { + "content": "Finished.", + "heading": { + "anchor": "testing-empty-section-above", + "depth": 4, + "length": 32, + "start": 544, + "title": "testing empty section above", + }, + "parents": [ + { + "anchor": "level-1-heading-1", + "depth": 1, + "length": 17, + "start": 110, + "title": "level 1 heading", + }, + { + "anchor": "level-2-heading-again", + "depth": 2, + "length": 25, + "start": 289, + "title": "level 2 heading, again", + }, + { + "anchor": "testing-stack-pop", + "depth": 3, + "length": 21, + "start": 521, + "title": "testing stack pop", + }, + ], + "type": "section", + }, + ] + `); + }); +}); diff --git a/packages/ui/app/src/mdx/frontmatter.ts b/packages/ui/fern-docs-mdx/src/frontmatter.ts similarity index 86% rename from packages/ui/app/src/mdx/frontmatter.ts rename to packages/ui/fern-docs-mdx/src/frontmatter.ts index 1be4a410f3..3bef1ed7d8 100644 --- a/packages/ui/app/src/mdx/frontmatter.ts +++ b/packages/ui/fern-docs-mdx/src/frontmatter.ts @@ -1,10 +1,8 @@ import * as FernDocs from "@fern-api/fdr-sdk/docs"; import grayMatter from "gray-matter"; -export type FernDocsFrontmatter = FernDocs.Frontmatter; - export function getFrontmatter(content: string): { - data: FernDocsFrontmatter; + data: FernDocs.Frontmatter; content: string; } { try { diff --git a/packages/ui/fern-docs-mdx/src/handlers/custom-headings.ts b/packages/ui/fern-docs-mdx/src/handlers/custom-headings.ts new file mode 100644 index 0000000000..3e2becb485 --- /dev/null +++ b/packages/ui/fern-docs-mdx/src/handlers/custom-headings.ts @@ -0,0 +1,45 @@ +import type { Element } from "hast"; +import type { Heading } from "mdast"; +import { State } from "mdast-util-to-hast"; + +/** + * This allows us to extract anchors that were overridden in the markdown, instead of using the default slug. + * + * i.e. `## My Heading [#some-anchor]` + */ +export function customHeadingHandler(state: State, node: Heading): Element { + let id: string | undefined; + const children = state.all(node).map((child) => { + // TODO: handle the case where child is not text because additional formatting is applied + if (child.type === "text") { + const { text, anchor } = extractAnchorFromHeadingText(child.value); + if (anchor != null) { + id = anchor; + return { ...child, value: text }; + } + } + + return child; + }); + const result: Element = { + type: "element", + tagName: "h" + node.depth, + properties: { id }, + children, + }; + state.patch(node, result); + return state.applyData(node, result); +} + +/** + * My Heading [#some-anchor] -> { text: "My Heading", anchor: "some-anchor" } + * @param headingText should not include the leading `#` + */ +export function extractAnchorFromHeadingText(headingText: string): { text: string; anchor?: string } { + const match = headingText.match(/^(.*?)(?:\s*\[#([^\]]+)\])?$/); + const [, text, anchor] = match || []; + if (text == null || anchor == null) { + return { text: headingText }; + } + return { text, anchor }; +} diff --git a/packages/ui/fern-docs-mdx/src/handlers/index.ts b/packages/ui/fern-docs-mdx/src/handlers/index.ts new file mode 100644 index 0000000000..ee51fefb80 --- /dev/null +++ b/packages/ui/fern-docs-mdx/src/handlers/index.ts @@ -0,0 +1 @@ +export * from "./custom-headings.js"; diff --git a/packages/ui/fern-docs-mdx/src/headings.ts b/packages/ui/fern-docs-mdx/src/headings.ts new file mode 100644 index 0000000000..b8405fc411 --- /dev/null +++ b/packages/ui/fern-docs-mdx/src/headings.ts @@ -0,0 +1,62 @@ +import GithubSlugger from "github-slugger"; +import type { Root } from "mdast"; +import { toString } from "mdast-util-to-string"; +import { visit } from "unist-util-visit"; +import { extractAnchorFromHeadingText } from "./handlers/custom-headings.js"; +import { getPosition } from "./position.js"; + +export interface HeadingMetadata { + depth: 1 | 2 | 3 | 4 | 5 | 6; + title: string; + anchor: string; + + /** + * Position of the heading in the raw markdown + */ + start: number; + length: number; +} + +const slugger = new GithubSlugger(); + +/** + * + * @param tree markdown tree + * @param lines lines of the raw markdown (split by "\n") used to calculate the position of the heading + * @returns + */ +export function collectRootHeadings(tree: Root, lines: readonly string[]): HeadingMetadata[] { + slugger.reset(); + + const headings: HeadingMetadata[] = []; + + visit(tree, "heading", (heading, _index, parent) => { + if (parent?.type !== "root") { + return; + } + + if (!heading.position) { + // eslint-disable-next-line no-console + console.error("Expected heading to have position; Skipping..."); + return; + } + + // `toString` will strip away all markdown formatting for the title + // TODO: we should preserve some formatting within the heading, i.e. `` and ``, etc. + const title = toString(heading); + + let anchor = extractAnchorFromHeadingText(title).anchor; + + if (anchor == null) { + anchor = slugger.slug(title); + } else { + // add occurrences to ensure uniqueness + slugger.occurrences[anchor] = (slugger.occurrences[anchor] ?? 0) + 1; + } + + const { start, length } = getPosition(lines, heading.position); + headings.push({ depth: heading.depth, title, anchor, start, length }); + }); + + return headings; +} diff --git a/packages/ui/fern-docs-mdx/src/index.ts b/packages/ui/fern-docs-mdx/src/index.ts new file mode 100644 index 0000000000..b7902ea4c1 --- /dev/null +++ b/packages/ui/fern-docs-mdx/src/index.ts @@ -0,0 +1,5 @@ +export * from "./frontmatter.js"; +export * from "./handlers/index.js"; +export * from "./parse.js"; +export * from "./position.js"; +export * from "./split-into-sections.js"; diff --git a/packages/ui/fern-docs-mdx/src/parse.ts b/packages/ui/fern-docs-mdx/src/parse.ts new file mode 100644 index 0000000000..fafa172894 --- /dev/null +++ b/packages/ui/fern-docs-mdx/src/parse.ts @@ -0,0 +1,11 @@ +import type { Root } from "mdast"; +import { fromMarkdown } from "mdast-util-from-markdown"; +import { mdxFromMarkdown } from "mdast-util-mdx"; +import { mdx } from "micromark-extension-mdx"; + +export function parseMarkdownToTree(content: string): Root { + return fromMarkdown(content, { + extensions: [mdx()], + mdastExtensions: [mdxFromMarkdown()], + }); +} diff --git a/packages/ui/fern-docs-mdx/src/position.ts b/packages/ui/fern-docs-mdx/src/position.ts new file mode 100644 index 0000000000..0c3939567c --- /dev/null +++ b/packages/ui/fern-docs-mdx/src/position.ts @@ -0,0 +1,30 @@ +/** + * @param lines markdown.split("/n") + * @param position position in the markdown node + * @returns start and length of the text to extract from the original markdown + */ +export function getPosition( + lines: readonly string[], + position: { start: { line: number; column: number }; end: { line: number; column: number } }, +): { start: number; length: number } { + let start = position.start.column - 1; + for (let i = 0; i < position.start.line - 1; i++) { + const line = lines[i]; + if (line == null) { + break; + } + start += line.length + 1; + } + + let length = 0 - position.start.column + position.end.column; + + for (let i = position.start.line - 1; i < position.end.line - 1; i++) { + const line = lines[i]; + if (line == null) { + break; + } + length += line.length + 1; + } + + return { start, length }; +} diff --git a/packages/ui/fern-docs-mdx/src/split-into-sections.ts b/packages/ui/fern-docs-mdx/src/split-into-sections.ts new file mode 100644 index 0000000000..ac16cf899b --- /dev/null +++ b/packages/ui/fern-docs-mdx/src/split-into-sections.ts @@ -0,0 +1,115 @@ +import { HeadingMetadata, collectRootHeadings } from "./headings.js"; +import { parseMarkdownToTree } from "./parse.js"; + +export interface MarkdownSectionRoot { + type: "root"; + content: string; +} + +export interface MarkdownSectionItem { + type: "section"; + heading: HeadingMetadata; + parents: HeadingMetadata[]; + content: string; +} + +export type MarkdownSection = + | MarkdownSectionRoot // there can only be one root node, or none, if there is no content + | MarkdownSectionItem; + +/** + * Each section of markdown is broken up by headings. + * + * For example: + * ```mdx + * Root content + * + * # My Heading + * + * Some content + * + * ## My Subheading + * + * Some more content + * ``` + * + * will be split into 3 sections: + * + * 1. { type: "root", content: "Root content" } + * 2. { type: "section", heading: { depth: 1, title: "My Heading", anchor: "my-heading", start: 1, length: 1 }, parents: [], content: "Some content" } + * 3. { type: "section", heading: { depth: 2, title: "My Subheading", anchor: "my-subheading", start: 2, length: 1 }, parents: [heading], content: "Some more content" } + * + * + * @param content must be markdown without frontmatter + * @returns list of markdown sections + */ +export function splitMarkdownIntoSections(markdownContent: string): MarkdownSection[] { + const lines = markdownContent.split("\n"); + const tree = parseMarkdownToTree(markdownContent); + + const headers = [...collectRootHeadings(tree, lines)]; + + const stack: HeadingMetadata[] = []; + + const sections: MarkdownSection[] = []; + + // for each heading, extract the text that immediately follows it, but before the next heading + // and add it to the records. If there is no next heading, use the rest of the document. + // note: the content immediately before the first heading is also added to the records + + let heading = headers.shift(); + + if (heading == null) { + const content = markdownContent.trim(); + // no headings, so we're done + return content.length === 0 ? [] : [{ type: "root", content }]; + } else { + const textBeforeFirstHeading = markdownContent.slice(0, heading.start).trim(); + const content = textBeforeFirstHeading.trim(); + if (content.length > 0) { + sections.push({ + type: "root", + content: textBeforeFirstHeading, + }); + } + } + + while (heading != null) { + const nextHeading = headers.shift(); + + // if the nextHeading is null, slice to the end of the document + const textBeforeNextHeading = markdownContent.slice(heading.start + heading.length, nextHeading?.start).trim(); + + // append current section + if (textBeforeNextHeading.length > 0) { + const content = textBeforeNextHeading.trim(); + + // skip empty sections + if (content.length > 0) { + sections.push({ + type: "section", + heading, + parents: [...stack], + content, + }); + } + } + + // update the breadcrumb stack + if (nextHeading != null) { + // if the next heading is deeper than the current heading, push the current heading onto the stack + if (nextHeading.depth > heading.depth) { + stack.push(heading); + } else { + // pop until we find the correct depth + while (stack.length > 0 && (stack[stack.length - 1]?.depth ?? 0) >= nextHeading.depth) { + stack.pop(); + } + } + } + + heading = nextHeading; + } + + return sections; +} diff --git a/packages/ui/fern-docs-mdx/tsconfig.json b/packages/ui/fern-docs-mdx/tsconfig.json new file mode 100644 index 0000000000..5a0c7e8c2a --- /dev/null +++ b/packages/ui/fern-docs-mdx/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "@fern-platform/configs/tsconfig/library.json", + "compilerOptions": { + "outDir": "./dist", + "rootDir": "./src", + "moduleResolution": "NodeNext", + "module": "NodeNext", + "types": ["node", "vitest/globals"] + }, + "include": ["./src/**/*"], + "references": [ + { + "path": "../../fdr-sdk/tsconfig.build.json" + }, + { + "path": "../../commons/core-utils" + } + ] +} diff --git a/packages/ui/fern-docs-mdx/vitest.config.ts b/packages/ui/fern-docs-mdx/vitest.config.ts new file mode 100644 index 0000000000..4f772037cd --- /dev/null +++ b/packages/ui/fern-docs-mdx/vitest.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from "vitest/config"; + +export default defineConfig({ + test: { + globals: true, + }, +}); diff --git a/packages/ui/fern-docs-search-server/.depcheckrc.json b/packages/ui/fern-docs-search-server/.depcheckrc.json new file mode 100644 index 0000000000..cf8a6564f2 --- /dev/null +++ b/packages/ui/fern-docs-search-server/.depcheckrc.json @@ -0,0 +1 @@ +{ "ignores": ["@fern-platform/configs", "@types/node", "vite", "@types/react"], "ignore-patterns": ["dist"] } diff --git a/packages/ui/fern-docs-search-server/.prettierrc.cjs b/packages/ui/fern-docs-search-server/.prettierrc.cjs new file mode 100644 index 0000000000..39cf0d0b8c --- /dev/null +++ b/packages/ui/fern-docs-search-server/.prettierrc.cjs @@ -0,0 +1 @@ +module.exports = require("../../../.prettierrc.json"); diff --git a/packages/ui/fern-docs-search-server/.stylelintrc.json b/packages/ui/fern-docs-search-server/.stylelintrc.json new file mode 100644 index 0000000000..0d2e3ff61d --- /dev/null +++ b/packages/ui/fern-docs-search-server/.stylelintrc.json @@ -0,0 +1 @@ +{ "extends": ["../../../shared/stylelintrc.shared.json"] } diff --git a/packages/ui/fern-docs-search-server/package.json b/packages/ui/fern-docs-search-server/package.json new file mode 100644 index 0000000000..1a2d0e4352 --- /dev/null +++ b/packages/ui/fern-docs-search-server/package.json @@ -0,0 +1,56 @@ +{ + "name": "@fern-ui/fern-docs-search-server", + "version": "0.0.0", + "repository": { + "type": "git", + "url": "https://github.com/fern-api/fern-platform.git", + "directory": "packages/ui/fern-docs-search-server" + }, + "private": true, + "files": [ + "dist" + ], + "type": "module", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "default": "./dist/index.js" + } + }, + "sideEffects": false, + "scripts": { + "clean": "rm -rf ./lib && tsc --build --clean", + "compile": "tsc --build", + "test": "vitest --run --passWithNoTests --globals", + "lint:eslint": "eslint --max-warnings 0 . --ignore-path=../../../.eslintignore", + "lint:eslint:fix": "pnpm lint:eslint --fix", + "lint:style": "stylelint 'src/**/*.scss' --allow-empty-input --max-warnings 0", + "lint:style:fix": "pnpm lint:style --fix", + "format": "prettier --write --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"", + "format:check": "prettier --check --ignore-unknown --ignore-path ../../../shared/.prettierignore \"**\"", + "organize-imports": "organize-imports-cli tsconfig.json", + "depcheck": "depcheck", + "dev": "tsc --watch", + "docs:dev": "pnpm dev" + }, + "dependencies": { + "@fern-api/fdr-sdk": "workspace:*", + "@fern-api/ui-core-utils": "workspace:*", + "@fern-ui/fern-docs-mdx": "workspace:*", + "algoliasearch": "^5.8.1", + "es-toolkit": "^1.24.0", + "pnpm": "^9.12.1", + "ts-essentials": "^10.0.1" + }, + "devDependencies": { + "@fern-platform/configs": "workspace:*", + "@types/node": "^18.7.18", + "depcheck": "^1.4.3", + "eslint": "^8.56.0", + "organize-imports-cli": "^0.10.0", + "prettier": "^3.3.2", + "stylelint": "^16.1.0", + "typescript": "5.4.3", + "vitest": "^1.5.0" + } +} diff --git a/packages/ui/fern-docs-search-server/src/algolia/__test__/__snapshots__/humanloop.test.ts.snap b/packages/ui/fern-docs-search-server/src/algolia/__test__/__snapshots__/humanloop.test.ts.snap new file mode 100644 index 0000000000..150f145a3e --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/__test__/__snapshots__/humanloop.test.ts.snap @@ -0,0 +1,445784 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`humanloop > should work 1`] = ` +[ + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + ], + "description": "Learn how to use Humanloop for prompt engineering, evaluation and monitoring. Comprehensive guides and tutorials for LLMOps. + +Humanloop is an Integrated Development Environment for Large Language Models + +Humanloop enables AI and product teams to develop LLM-based applications that are reliable and scalable. + +Principally, it is an **evaluation framework** that enables you to rigorously measure and improve LLM performance during development and in production and a **collaborative workspace** where engineers, PMs and subject matter experts improve prompts, tools and agents together. + +By adopting Humanloop, teams save 6-8 engineering hours per project each week and they feel confident that their AI is reliable. + + + + + +
+ +The power of Humanloop lies in its integrated approach to AI development. Evaluation, +monitoring and prompt engineering in one integrated platform enables you to understand system performance and take the actions needed to fix it. + +The SDK slots seamlessly into your existing code-based orchestration and the user-friendly interface allows both developers and non-technical stakeholders to adjust the AI together. + +You can learn more about the challenges of AI development and how Humanloop solves them in [Why Humanloop?](/docs/v5/getting-started/why-humanloop).", + "indexSegmentId": "0", + "slug": "docs/v5/getting-started/overview", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + ], + "description": "Humanloop is an enterprise-grade stack for product teams building with LLMs. We are SOC-2 compliant, offer self-hosting and never train on your data.", + "indexSegmentId": "0", + "slug": "docs/v5/getting-started/why-humanloop", + "title": "Why Humanloop?", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + ], + "description": "The principal way you "program" LLMs is through natural language instructions called prompts. There's a plethora of techniques needed to prompt the models to work robustly, reliably and with the correct knowledge. + +Developing, managing and evaluating prompts for LLMs is surprisingly hard and dissimilar to traditional software in the following ways: + +- **Subject matter experts matter more than ever.** As LLMs are being applied to all different domains, the people that know how they should best perform are rarely the software engineers but the experts in that field. +- **AI output is often non-deterministic.** Innocuous changes to the prompts can cause unforeseen issues elsewhere. +- **AI outputs are subjective**. It’s hard to measure how well products are working and so, without robust evaluation, larger companies simply can’t trust putting generative AI in production. + + + +![Bad workflows for generative AI are costing you through wasted engineering effort and delays to launch](file:602d58f3-1208-4fa3-bc95-c307d9108bd6) + + + +Many companies struggle to enable the collaboration needed between product leaders, subject matter experts and engineers. Often they'll rely on a hodge-podge of tools like the OpenAI Playground, custom scripts and complex spreadsheets. The process is slow and error-prone, wasting engineering time and leading to long delays and feelings of uncertainty. + +
+
", + "indexSegmentId": "0", + "slug": "docs/v5/getting-started/why-humanloop#llms-break-traditional-software-processes", + "title": "LLMs Break Traditional Software Processes", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + ], + "description": "We give you an interactive environment where your domain experts, product managers and engineers can work together to iterate on prompts. Coupled with this are tools for rigorously evaluating the performance of your AI systems. + +Coding best practices still apply. All your assets are strictly versioned and can be serialised to work with existing systems like git and your CI/CD pipeline. Our TypeScript and Python SDKs seamlessly integrate with your existing codebases. + +Companies like Duolingo and AmexGBT use Humanloop to manage their prompt development and evaluation so they can produce high-quality AI features and be confident that they work appropriately. + +> “We implemented Humanloop at a crucial moment for Twain when we had to develop and test many new prompts for a new feature release. I cannot imagine how long it would have taken us to release this new feature without Humanloop.” – Maddy Ralph, Prompt Engineer at Twain + +Check out more detailed [case study pages](https://humanloop.com/customers) for more real world examples of the impact of Humanloop. +
+
", + "indexSegmentId": "0", + "slug": "docs/v5/getting-started/why-humanloop#humanloop-solves-the-most-critical-workflows-around-prompt-engineering-and-evaluation", + "title": "Humanloop solves the most critical workflows around prompt engineering and evaluation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + ], + "description": "Humanloop is an enterprise-grade stack for AI and product teams. We are SOC-2 compliant, offer self-hosting and never train on your data. + +Product owners and subject matter experts appreciate that the Humanloop enables them to direct the AI behavior through the intuitive UI. + +Developers find that Humanloop SDK/API slots well into existing code-based LLM orchestration without forcing unhelpful abstractions upon them, while removing bottlenecks around updating prompts and running evaluations. + +With Humanloop, companies are overcoming the challenges of building with AI and shipping groundbreaking applications with confidence: By giving companies the right tools, Humanloop dramatically accelerates their AI adoption and makes it easy for best practices to spread around an organization. + +> “Our teams use Humanloop as our development playground to try out various language models, develop our prompts, and test performance. We are still in the official onboarding process but Humanloop is already an essential part of our AI R&D process.“ – American Express Global Business Travel", + "indexSegmentId": "0", + "slug": "docs/v5/getting-started/why-humanloop#whos-it-for", + "title": "Who's it for?", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + ], + "description": "Getting up and running with Humanloop is quick and easy. This guide will run you through creating and managing your first Prompt in a few minutes. + +Getting up and running with Humanloop is quick and easy. This guide will run you through creating and managing your first Prompt in a few minutes. + + +#### Create a Humanloop Account + +If you haven’t already, create an account or log in to Humanloop + +#### Add an OpenAI API Key + +If you’re the first person in your organization, you’ll need to add an API key to a model provider. + +1. Go to OpenAI and [grab an API key](https://platform.openai.com/api-keys) +2. In Humanloop [Organization Settings](https://app.humanloop.com/account/api-keys) set up OpenAI as a model provider. + + +Using the Prompt Editor will use your OpenAI credits in the same way that the OpenAI playground does. Keep your API keys for Humanloop and the model providers private. + + +", + "indexSegmentId": "0", + "slug": "docs/v5/tutorials/quickstart", + "title": "Quickstart Tutorial", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + ], + "description": " +### Create a Prompt File + +When you first open Humanloop you’ll see your File navigation on the left. Click ‘**+ New**’ and create a **Prompt**. + + + +In the sidebar, rename this file to "Comedian Bot" now or later. + +### Create the Prompt template in the Editor + +The left hand side of the screen defines your Prompt – the parameters such as model, temperature and template. The right hand side is a single chat session with this Prompt. + + + +Click the “**+ Message**” button within the chat template to add a system message to the chat template. + + + +Add the following templated message to the chat template. + +\`\`\` +You are a funny comedian. Write a joke about {{topic}}. +\`\`\` + +This message forms the chat template. It has an input slot called \`topic\` (surrounded by two curly brackets) for an input value that is provided each time you call this Prompt. + +On the right hand side of the page, you’ll now see a box in the **Inputs** section for \`topic\`. + +1. Add a value for \`topic\` e.g. music, jogging, whatever +2. Click **Run** in the bottom right of the page + +This will call OpenAI’s model and return the assistant response. Feel free to try other values, the model is _very_ funny. + +You now have a first version of your prompt that you can use. + +### Commit your first version of this Prompt + +1. Click the **Commit** button +2. Put “initial version” in the commit message field +3. Click **Commit** + + + +### View the logs + +Under the Prompt File, click ‘Logs’ to view all the generations from this Prompt + +Click on a row to see the details of what version of the prompt generated it. From here you can give feedback to that generation, see performance metrics, open up this example in the Editor, or add this log to a dataset. + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/tutorials/quickstart#get-started", + "title": "Get Started", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + ], + "description": "Well done! You've now created your first Prompt. If you look around it might seem a bit empty at the moment.", + "indexSegmentId": "0", + "slug": "docs/v5/tutorials/quickstart#next-steps", + "title": "Next Steps", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Discover how Humanloop manages datasets, with version control and collaboration to enable you to evaluate and fine-tune your models. + +Humanloop provides a set of simple building blocks for your AI applications and avoids complex abstractions. + +Prompts, Tools and Evaluators are the core building blocks of your AI features on Humanloop: + +- [**Prompts**](./prompts): Prompts define how a large language model behaves. +- [**Tools**](./tools): Tools are functions that can extend your LLMs with access to external data sources and enabling them to take actions. +- [**Evaluators**](./evaluators): Evaluators on Humanloop are functions that can be used to judge the output of Prompts, Tools or other Evaluators. + +", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/overview", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "These core building blocks of Prompts, Tools and Evaluators are represented as different file types within a flexible filesystem in your Humanloop organization. + +All file types share the following key properties:", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/overview#file-properties", + "title": "File Properties", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/overview#file-properties", + "title": "File Properties", + }, + ], + "description": "You can create and manage these files in the [Humanloop UI](https://app.humanloop.com/), +or via the [API](/docs/api-reference/). Product teams and their subject matter experts may prefer using the UI first workflows for convenience, whereas AI teams and engineers may prefer to use the API for greater control and customisation.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/overview#managed-ui-or-code-first", + "title": "Managed UI or code first", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/overview#file-properties", + "title": "File Properties", + }, + ], + "description": "Files have immutable versions that are uniquely determined by +their parameters that characterise the behaviour of the system. For example, a Prompt version is determined by the prompt template, base model and hyperparameters chosen. +Within the Humanloop Editor and via the API, you can commit new versions of a file, view the history of changes and revert to a previous version.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/overview#are-strictly-version-controlled", + "title": "Are strictly version controlled", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/overview#file-properties", + "title": "File Properties", + }, + ], + "description": "All files can be called (if you use the Humanloop runtime) or logged to (where you manage the runtime yourself). For example, +with Prompts, Humanloop integrates to all the major [model providers](http://humanloop.com/docs/reference/supported-models). You can choose to call a Prompt, where Humanloop acts as a proxy to the model provider. Alternatively, you can choose to manage the model calls yourself and log the results to the Prompt on Humanloop. +Using the Humanloop runtime is generally the simpler option and allows you to call the file natively within the Humanloop UI, whereas owning the runtime yourself and logging allows you to have more fine-grained control.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/overview#have-a-flexible-runtime", + "title": "Have a flexible runtime", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/overview#file-properties", + "title": "File Properties", + }, + ], + "description": "Files can be combined with other files to create more complex systems like chains and agents. For example, a Prompt can call a Tool, which can then be evaluated by an Evaluator. +The orchestration of more complex systems is best done in code using the API and the full trace of execution is accessible in the Humanloop UI for debugging and evaluation purposes.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/overview#are-composable-with-sessions", + "title": "Are composable with sessions", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/overview#file-properties", + "title": "File Properties", + }, + ], + "description": "All files can be exported and imported in a serialized form. For example, Prompts are serialized to our [.prompt](/docs/reference/prompt-file-format) format. This provides a useful medium for more technical teams that wish to maintain the source of truth in their existing version control system like git.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/overview#have-a-serialized-form", + "title": "Have a serialized form", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/overview#file-properties", + "title": "File Properties", + }, + ], + "description": "You can tag file versions with specific environments and target these environments via the UI and API to facilitate robust deployment workflows. + +
+ +Humanloop also has the concept of [Datasets](/docs/concepts/datasets) that are used within [Evaluation](/docs/concepts/evaluators) workflows. Datasets share all the same properties, except they do not have a runtime consideration.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/overview#support-deployments", + "title": "Support deployments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Discover how Humanloop manages prompts, with version control and rigorous evaluation for better performance. + +Prompts define how a large language model behaves. + + + +A Prompt on Humanloop encapsulates the instructions and other configuration for how a large language model should perform a specific task. Each change in any of the following properties creates a new version of the Prompt: + +- the template such as \`Write a song about {{topic}}\`. For chat models, your template will contain an array of messages. +- the model e.g. \`gpt-4o\` +- all the parameters to the model such as \`temperature\`, \`max_tokens\`, \`top_p\` etc. +- any tools available to the model + +A Prompt is callable in that if you supply the necessary inputs, it will return a response from the model. + +Inputs are defined in the template through the double-curly bracket syntax e.g. \`{{topic}}\` and the value of the variable will need to be supplied when you call the Prompt to create a generation. + +This separation of concerns, keeping configuration separate from the query time data, is crucial for enabling you to experiment with different configurations and evaluate any changes. +The Prompt stores the configuration and the query time data in [Logs](./logs), which can then be used to create Datasets for evaluation purposes. + + + Note that we use a capitalized "[Prompt](/docs/concepts/prompts)" to refer to + the entity in Humanloop, and a lowercase "prompt" to refer to the general + concept of input to the model. + + + + +\`\`\`jsx +--- +model: gpt-4 +temperature: 1.0 +max_tokens: -1 +provider: openai +endpoint: chat +--- + + Write a song about {{topic}} + +\`\`\` + +", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/prompts", + "title": "Prompts", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "A Prompt file will have multiple versions as you try out different models, params or templates, but they should all be doing the same task, and in general should be swappable with one-another. + +By versioning your Prompts, you can track how adjustments to the template or parameters influence the LLM's responses. This is crucial for iterative development, as you can pinpoint which versions produce the most relevant or accurate outputs for your specific use case.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/prompts#versioning", + "title": "Versioning", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/prompts#versioning", + "title": "Versioning", + }, + ], + "description": "You should create a new Prompt for every different ‘task to be done’ with the LLM. For example each of these tasks are things that can be done by an LLM and should be a separate Prompt File: Writing Copilot, Personal Assistant, Summariser, etc. + +We've seen people find it useful to also create a Prompt called 'Playground' where they can free form experiment without concern of breaking anything or making a mess of their other Prompts.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/prompts#when-to-create-a-new-prompt", + "title": "When to create a new Prompt", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Prompts are callable as an API. You supply and query-time data such as input values or user messages, and the model will respond with its text output. + + + +You can also use Prompts without proxying through Humanloop to the model provider and instead call the model yourself and explicitly log the results to your Prompt. + +", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/prompts#using-prompts", + "title": "Using Prompts", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Our \`.prompt\` file format is a serialized version of a model config that is designed to be human-readable and suitable for checking into your version control systems alongside your code. See the [.prompt files reference](../reference/prompt-file-format) reference for more details.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/prompts#serialization-prompt-file", + "title": "Serialization (.prompt file)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/prompts#serialization-prompt-file", + "title": "Serialization (.prompt file)", + }, + ], + "description": "The .prompt file is heavily inspired by [MDX](https://mdxjs.com/), with model and hyperparameters specified in a YAML header alongside a JSX-inspired format for your Chat Template.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/prompts#format", + "title": "Format", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/prompts#serialization-prompt-file", + "title": "Serialization (.prompt file)", + }, + ], + "description": " +\`\`\`jsx Chat +--- +model: gpt-4 +temperature: 1.0 +max_tokens: -1 +provider: openai +endpoint: chat +--- + + You are a friendly assistant. + +\`\`\` +\`\`\`jsx Completion +--- +model: claude-2 +temperature: 0.7 +max_tokens: 256 +top_p: 1.0 +provider: anthropic +endpoint: complete +--- +Autocomplete the sentence. + +Context: {{context}} + +{{sentence}} + +\`\`\` + + +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/prompts#basic-examples", + "title": "Basic examples", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Discover how Humanloop manages tools for use with large language models (LLMs) with version control and rigorous evaluation for better performance. + +Tools are functions that can extend your LLMs with access to external data sources and enabling them to take actions. + + + +Humanloop Tools can be used in multiple ways: + +- by the LLM by [OpenAI function calling](https://platform.openai.com/docs/guides/function-calling)) +- within the Prompt template +- as part of a chain of events such as a Retrieval Tool in a RAG pipeline + +Some Tools are executable within Humanloop, and these offer the greatest utility and convenience. For example, Humanloop has pre-built integrations for Google search and Pinecone have and so these Tools can be executed and the results inserted into the API or Editor automatically.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/tools", + "title": "Tools", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Certain large language models support tool use or "function calling". For these models, you can supply the description of functions and the model can choose to call one or more of them by providing the values to call the functions with. + + + +
+ +Tools all have a functional interface that can be supplied as the JSONSchema needed for function calling. Additionally, if the Tool is executable on Humanloop, the result of any tool will automatically be inserted into the response in the API and in the Editor. + +Tools for function calling can be defined inline in our Editor or centrally managed for an organization.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/tools#tool-use-function-calling", + "title": "Tool Use (Function Calling)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "You can add a tool call in a prompt template and the result will be inserted into the prompt sent to the model. This allows you to insert retrieved information into your LLMs calls. + +For example, if you have **\`{{ google("population of india") }}\`** in your template, this Google tool will get executed and replaced with the resulting text “**1.42 billion (2024)**” before the prompt is sent to the model. Additionally, if your template contains a Tool call that uses an input variable e.g. **\`{{ google(query) }}\`** this will take the value of the input supplied in the request, compute the output of the Google tool, and insert that result into the resulting prompt that is sent to the model. + +Example of a Tool being used within a Prompt template. This example will mean that this Prompt needs two inputs to be supplied (\`query\`, and \`top_k\`) + +Example of a Tool being used within a Prompt template. This example will mean that this Prompt needs two inputs to be supplied (\`query\`, and \`top_k\`)", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/tools#tools-in-a-prompt-template", + "title": "Tools in a Prompt template", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "You can call a Tool within a session of events and post the result to Humanloop. For example in a RAG pipeline, instrumenting your retrieval function as a Tool, enables you to be able to trace through the full sequence of events. The retrieval Tool will be versioned and the logs will be available in the Humanloop UI, enabling you to independently improve that step in the pipeline.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/tools#tools-within-a-chain", + "title": "Tools within a chain", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/tools#tools-within-a-chain", + "title": "Tools within a chain", + }, + ], + "description": "- *Pinecone Search* - Vector similarity search using Pinecone vector DB and OpenAI embeddings. +- *Google Search* - API for searching Google: [https://serpapi.com/](https://serpapi.com/). +- *GET API* - Send a GET request to an external API.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/tools#third-party-integrations", + "title": "Third-party integrations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/tools#tools-within-a-chain", + "title": "Tools within a chain", + }, + ], + "description": "- *Snippet Tool* - Create reusable key/value pairs for use in prompts - see [how to use the Snippet Tool](/docs/development/guides/reusable-snippets). +- *JSON Schema* - JSON schema that can be used across multiple Prompts - see [how to link a JSON Schema Tool](/docs/development/guides/link-json-schema-tool).", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/tools#humanloop-tools", + "title": "Humanloop tools", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Discover how Humanloop manages datasets, with version control and collaboration to enable you to evaluate and fine-tune your models. + +Datasets are collections of Datapoints, which are input-output pairs, that you can use within Humanloop for evaluations and fine-tuning. + + + +Datasets are primarily used for evaluation purposes on Humanloop. You can think of a Dataset as a collection of testcases for your AI applications. Each testcase is represented by a **Datapoint**, which contains the following fields: + +- **Inputs**: a collection of prompt variable values which are interpolated into the prompt template at generation time (i.e. they replace the \`{{ variables }}\` you define in your prompt template). +- **Messages**: for chat models, as well as the prompt template, you can optionally have a history of chat messages that are fed into amodel when generating a response. +- **Target**: certain types of test cases can benefit from comparing the out your application to an expected or desired behaviour. In the simplest case, this can simply be a string representing the exact output you hope the model produces for the inputs and messages represented by the Datapoint. + In more complex cases, you can define an arbitrary JSON object for \`target\` with whatever fields are necessary to help you specify the intended behaviour. +
+ +", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/datasets", + "title": "Datasets", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "A Dataset will have multiple versions as you iterate on refining your test cases for your task. This tends to be an evolving process as you learn more about how your [Prompts](./prompts) behave and how users are interacting with your AI application in the wild. + +Dataset versions are immutable and are uniquely defined by the contents of the Datapoints. If you change, or add additional, or remove existing Datapoints, this will constitute a new version. +When running Evaluations you always reference a specific version of the Dataset. This allows you to have confidence in your Evaluations because they are always tied transparently to a specific set of test cases.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/datasets#versioning", + "title": "Versioning", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Datasets can be created in the following ways: + +- via CSV upload in the UI. +- converting from existing [Logs](./logs) you've stored on Humanloop. These can be [Prompt](./prompts) or [Tool](./tools) Logs depending on your Evaluation goals. +- via API requests. + +See our detailed [guide](../evaluation/guides/create-dataset) for more details.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/datasets#creating-datasets", + "title": "Creating Datasets", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "[Evaluations](../evaluation/overview) are run on Humanloop by iterating over the Datapoints in a Dataset and generating output for the different versions of your AI application that you wish to compare. +For example, you may wish to test out how Claude Opus compares to GPT-4 and Google Gemini on cost and accuracy for a specific set of testcases that describe the expected behaviour of your application. + +[Evaluators](./evaluators) are then run against the logs generated by the AI applications for each Datapoint to provide a judgement on how well the model performed and can reference the target field in the Datapoint to determine the expected behaviour.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/datasets#evaluations-use-case", + "title": "Evaluations use case", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Learn about LLM Evaluation using Evaluators. Evaluators are functions that can be used to judge the output of Prompts, Tools or other Evaluators. + +Evaluators on Humanloop are functions that can be used to judge the output of Prompts, Tools or other Evaluators. + + + +The core entity in the Humanloop evaluation framework is an **[Evaluator](/docs/concepts/evaluators)** - a function you define which takes an LLM-generated log as an argument and returns a **judgment**. +The judgment is typically either a boolean or a number, indicating how well the model performed according to criteria you determine based on your use case. + +Evaluators can be leveraged for [Monitoring](../observability/overview) your live AI application, as well as for [Evaluations](../evaluation/overview) to benchmark different version of your AI application against each other pre-deployment.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/evaluators", + "title": "Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Currently, you can define three different Evaluator sources on Humanloop: + +- **Code** - using simple deterministic rules based judgments against attributes like cost, token usage, latency, regex rules on the output, etc. These are generally fast and cheap to run at scale. +- **AI** - using other foundation models to provide judgments on the output. This allows for more qualitative and nuanced judgments for a fraction of the cost of human judgments. +- **Human** - getting gold standard judgments from either end users of your application, or internal domain experts. This can be the most expensive and slowest option, but also the most reliable. + +", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/evaluators#sources-of-judgement", + "title": "Sources of Judgement", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Evaluators can be deployed on Humanloop to support both testing new versions of your Prompts and Tools during development and for monitoring live apps that are already in production.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/evaluators#online-monitoring-versus-offline-evaluation", + "title": "Online Monitoring versus Offline Evaluation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/evaluators#online-monitoring-versus-offline-evaluation", + "title": "Online Monitoring versus Offline Evaluation", + }, + ], + "description": "Evaluators are run against the [Logs](./logs) generated by your AI applications. Typically, they are used to monitor deployed model performance over time and check for drift or degradation in performance. +The Evaluator in this case only takes a single argument - the \`log\` generated by the model. The Evaluator is expected to return a judgment based on the Log, +which can be used to trigger alerts or other actions in your monitoring system. + +See our [Monitoring guides](../observability/overview) for more details.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/evaluators#online-monitoring", + "title": "Online Monitoring", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/evaluators#online-monitoring-versus-offline-evaluation", + "title": "Online Monitoring versus Offline Evaluation", + }, + ], + "description": "Offline Evaluators are combined with predefined [**Datasets**](./datasets) in order to evaluate your application as you iterate in your prompt engineering workflow, or to test for regressions in a CI environment. + +A test Dataset is a collection of **Datapoints**, which are roughly analogous to unit tests or test cases in traditional programming. Each datapoint specifies inputs to your model and (optionally) some target data. + +When you run an offline evaluation, a Log needs to be generated using the inputs of each Datapoint and the version of the application being evaluated. Evaluators then need to be run against each Log to provide judgements, +which are then aggregated to provide an overall score for the application. Evaluators in this case take the generated \`Log\` and the \`testcase\` datapoint that gave rise to it as arguments. + +See our guides on [creating Datasets](/docs/evaluation/guides/create-dataset) and [running Evaluations](/v5/evaluation/guides/run-evaluation) for more details.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/evaluators#offline-evaluations", + "title": "Offline Evaluations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Evaluations require the following to be generated: + +1. Logs for the datapoints. +2. Evaluator results for those generated logs. + +Evaluators which are defined within the Humanloop UI can be executed in the Humanloop runtime, whereas Evaluators defined in your code can be executed in your runtime and the results posted back to Humanloop. +This provides flexibility for supporting more complex evaluation workflows.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/evaluators#humanloop-runtime-versus-your-runtime", + "title": "Humanloop runtime versus your runtime", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Evaluators apply judgment to Logs. This judgment can be of the following types: + +- **Boolean** - A true/false judgment. +- **Number** - A numerical judgment, which can act as a rating or score. +- **Select** - One of a predefined set of options. One option must be selected. +- **Multi-select** - Any number of a predefined set of options. None, one, or many options can be selected. +- **Text** - A free-form text judgment. + +Code and AI Evaluators can return either **Boolean** or **Number** judgments. +Human Evaluators can return **Number**, **Select**, **Multi-select**, or **Text** judgments.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/evaluators#return-types", + "title": "Return types", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Logs contain the inputs and outputs of each time a Prompt, Tool or Evaluator is called. + +Logs contain the inputs and outputs of each time a Prompt, Tool or Evaluator is called. + +All [Prompts](./prompts), [Tools](./tools) and [Evaluators](./evaluators) produce Logs. A Log contains the \`inputs\` and the \`output\`s and tracks which version of Prompt/Tool/Evaluator was used. + +For the example of a Prompt above, the Log would have one \`input\` called ‘topic’ and the \`output\` will be the completion. + + + +![A Log which contains an input query](file:7b05abc5-c1bd-46e2-806c-70edf6fab22a) + +", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/logs", + "title": "Logs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Deployment environments enable you to control the deployment lifecycle of your Prompts and other files between development and production environments. + +Deployment environments enable you to control the deployment lifecycle of your Prompts and other files between development and production environments. + +Environments enable you to deploy different versions of your files to specific environments, allowing you to separately manage the deployment workflow between testing and production. With environments, you have the control required to manage the full LLM deployment lifecycle.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/environments", + "title": "Environments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Every organisation automatically receives a default production environment. You can create additional environments with custom names by visiting your organisation's [environments page](https://app.humanloop.com/account/environments). + + + Only Enterprise customers can create more than one environment + + +The environments you define for your organisation will be available for each file and can be viewed in the file's dashboard once created. + +![](file:a780c738-2da6-432c-95bb-158ea103d44d)", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/environments#managing-your-environments", + "title": "Managing your environments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + { + "slug": "docs/v5/concepts/environments#managing-your-environments", + "title": "Managing your environments", + }, + ], + "description": "By default, the production environment is marked as the Default environment. This means that all API calls that don't explicitly target a specific environment will use this environment. You can rename the default environment on the [organisation's environments](https://app.humanloop.com/account/environments) page. + + + Renaming the environments will take immediate effect, so ensure that this + change is planned and does not disrupt your production workflows. +", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/environments#the-default-environment", + "title": "The default environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Once created on the environments page, environments can be used for each file and are visible in the respective dashboards. + +You can deploy directly to a specific environment by selecting it in the **Deployments** section. + +![](file:d2a9f417-bc43-4729-beb0-52adc535df07) + +Alternatively, you can deploy to multiple environments simultaneously by deploying a version from either the Editor or the Versions table.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/environments#using-environments", + "title": "Using environments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "![](file:3e7ce42e-e625-49cd-abbd-51965ca1d3f4) + +You can now call the version deployed in a specific environment by including an optional additional \`environment\` field. An exmaple of this field can be seen in the v5 [Prompt Call](/v5/api-reference/prompts/call-stream#request.query.environment) documentation.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/environments#using-environments-via-api", + "title": "Using environments via API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/getting-started/overview", + "title": "Getting Started", + }, + { + "slug": "docs/concepts/overview", + "title": "Concepts", + }, + ], + "description": "Directories can be used to group together related files. This is useful for organizing your work as part of prompt engineering and collaboration. + +Directories can be used to group together related files. + +Directories in Humanloop serve as an organizational tool, allowing users to group related files and structure their work logically. They function similarly to folders in a traditional file system, providing a hierarchical structure for managing [Prompts](/docs/concepts/prompts), [Tools](/docs/concepts/tools), [Datasets](/docs/concepts/datasets), and other resources. + + +Directories are primarily for organizational needs but they can have +functional impacts if you are referencing Prompts, Tools etc. by \`path\`. + +We recommend to always refer to Prompts, Tools etc. by their \`id\` as this will +make your workflows more robust and avoid issues if the files are moved. + + + +For more information on how to create and manage directories, see our [Create a Directory](/docs/development/guides/create-directory) guide.", + "indexSegmentId": "0", + "slug": "docs/v5/concepts/directories", + "title": "Directories", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + ], + "description": "Discover how Humanloop manages prompts, with version control and rigorous evaluation for better performance. + +How to develop and manage your Prompt and Tools on Humanloop + +Your AI application can be broken down into Prompts, Tools, and Evaluators. Humanloop versions and manages each of these artifacts to enable team collaboration and evaluation of each component of your AI system. + +This overview will explain the basics of prompt development, versioning, and management, and how to best integrate your LLM calls with Humanloop.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + ], + "description": " + +[Prompts](/docs/concepts/prompts) are a fundamental part of interacting with large language models (LLMs). They define the instructions and parameters that guide the model's responses. In Humanloop, Prompts are managed with version control, allowing you to track changes and improvements over time. + + + +\`\`\`jsx +--- +model: gpt-4o +temperature: 1.0 +max_tokens: -1 +--- + + Write a song about {{topic}} + +\`\`\` + + + +A [Prompt](/docs/concepts/prompts) on Humanloop encapsulates the instructions and other configuration for how a large language model should perform a specific task. Each change in any of the following properties creates a new version of the Prompt: + +- the template such as \`Write a song about {{topic}}\`. For chat models, your template will contain an array of messages. +- the model e.g. \`gpt-4o\` +- all the parameters to the model such as \`temperature\`, \`max_tokens\`, \`top_p\` etc. +- any tools available to the model", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#prompt-management", + "title": "Prompt Management", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-management", + "title": "Prompt Management", + }, + ], + "description": "You can create a Prompt explicitly [in the Prompt Editor](/docs/development/guides/create-prompt) or [via the API](/docs/v5/api-reference/prompts/upsert). + +New prompts can also be created automatically via the API if you specify the Prompt's \`path\` (its name and directory) while supplying the Prompt's parameters and template. This is useful if you are developing your prompts in code and want to be able to version them as you make changes to the code.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#creating-a-prompt", + "title": "Creating a Prompt", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-management", + "title": "Prompt Management", + }, + ], + "description": "A Prompt will have multiple versions as you experiment with different models, parameters, or templates. However, all versions should perform the same task and generally be interchangeable with one another. + +By versioning your Prompts, you can track how adjustments to the template or parameters influence the LLM's responses. This is crucial for iterative development, as you can pinpoint which versions produce the most relevant or accurate outputs for your specific use case. + +As you edit your prompt, new versions of the Prompt are created automatically. Each version is timestamped and given a unique version ID which is deterministically based on the Prompt's contents. For every version that you want to "save", you commit that version and it will be recorded as a new committed version of the Prompt with a commit message.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#versioning", + "title": "Versioning", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-management", + "title": "Prompt Management", + }, + { + "slug": "docs/v5/development/overview#versioning", + "title": "Versioning", + }, + ], + "description": "You should create a new Prompt for every different 'task to be done' with the LLM. For example each of these tasks are things that can be done by an LLM and should be a separate Prompt File: Writing Copilot, Personal Assistant, Summariser, etc. + +We've seen people find it useful to also create a Prompt called 'Playground' where they can free form experiment without concern of breaking anything or making a mess of their other Prompts.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#when-to-create-a-new-prompt", + "title": "When to create a new Prompt", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + ], + "description": "Understanding the best practices for working with large language models can significantly enhance your application's performance. Each model has its own failure modes, and the methods to address or mitigate these issues are not always straightforward. The field of "prompt engineering" has evolved beyond just crafting prompts to encompass designing systems that incorporate model queries as integral components. + +For a start, read our [Prompt Engineering 101](https://humanloop.com/blog/prompt-engineering-101) guide which covers techniques to improve model reasoning, reduce the chances of model hallucinations, and more.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#prompt-engineering", + "title": "Prompt Engineering", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-engineering", + "title": "Prompt Engineering", + }, + ], + "description": "Inputs are defined in the template through the double-curly bracket syntax e.g. \`{{topic}}\` and the value of the variable will need to be supplied when you call the Prompt to create a generation. + +\`\`\`text +Property context: + +Location: {{location}} +Number of Bedrooms: {{number_of_bedrooms}} +Number of Bathrooms: {{number_of_bathrooms}} +Square Footage: {{square_footage}} +Distance to Key Locations (e.g., downtown, beach): {{distance_to_key_locations}} +Year Built: {{year_built}} +Price: {{price}} +Contact Information: {{contact_information}} +Instructions: +Generate a marketing description for the property based on the provided context. The description should be between 150-200 words and have a friendly, engaging tone. Highlight the key features and amenities that make this property attractive to potential buyers. Ensure the copy is informative and enticing, encouraging readers to take action. +\`\`\` + +This separation of concerns, keeping configuration separate from the query time data, is crucial for enabling you to experiment with different configurations and evaluate any changes. +The Prompt stores the configuration and the query time data in [Logs](../concepts/logs), which can then be used to create Datasets for evaluation purposes.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#prompt-templates", + "title": "Prompt templates", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-engineering", + "title": "Prompt Engineering", + }, + ], + "description": "Certain large language models support tool use or "function calling". For these models, you can supply the description of functions and the model can choose to call one or more of them by providing the values to call the functions with. + +Function calling enables the model to perform various tasks: + +**1. Call external APIs**: The model can translate natural language into API calls, allowing it to interact with external services and retrieve information. + +**2. Take actions**: The model can exhibit agentic behavior, making decisions and taking actions based on the given context. + +**3. Provide structured output**: The model's responses can be constrained to a specific structured format, ensuring consistency and ease of parsing in downstream applications. + + + +Tools for function calling can be defined inline in the Prompt editor in which case they form part of the Prompt version. Alternatively, they can be pulled out in a Tool file which is then referenced in the Prompt. + +Each Tool has functional interface that can be supplied as the _JSON Schema_ needed for function calling. Additionally, if the Tool is executable on Humanloop, the result of any tool will automatically be inserted into the response in the API and in the Editor.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#tool-use-function-calling", + "title": "Tool Use (Function Calling)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-engineering", + "title": "Prompt Engineering", + }, + ], + "description": "Prompts are callable as an API. You supply and query-time data such as input values or user messages, and the model will respond with its text output. + + + +A Prompt is callable in that if you supply the necessary inputs, it will return a response from the model. + +Once you have created and versioned your Prompt, you can call it as an API to generate responses from the large language model directly. You can also fetch the log the data from your LLM calls, enabling you to evaluate and improve your models.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#using-prompts", + "title": "Using Prompts", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-engineering", + "title": "Prompt Engineering", + }, + ], + "description": "The easiest way to both call the large language model with your Prompt and to log the data is to use the \`Prompt.call()\` method (see the guide on [Calling a Prompt](/docs/development/guides/call-prompt)) which will do both in a single API request. However, there are two main reasons why you may wish to log the data seperately from generation: + +1. You are using your own model that is not natively supported in the Humanloop runtime. +2. You wish to avoid relying on Humanloop runtime as the proxied calls adds a small additional latency, or + +The \`prompt.call()\` Api encapsulates the LLM provider calls (for example \`openai.Completions.create()\`), the model-config selection and logging steps in a single unified interface. There may be scenarios that you wish to manage the LLM provider calls directly in your own code instead of relying on Humanloop. + +Humanloop provides a comprehensive platform for developing, managing, and versioning Prompts, Tools and your other artifacts of you AI systems. This explainer will show you how to create, version and manage your Prompts, Tools and other artifacts. + +You can also use Prompts without proxying through Humanloop to the model provider and instead call the model yourself and explicitly log the results to your Prompt. + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#proxying-your-llm-calls-vs-async-logging", + "title": "Proxying your LLM calls vs async logging", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-engineering", + "title": "Prompt Engineering", + }, + ], + "description": "Our \`.prompt\` file format is a serialized version of a model config that is designed to be human-readable and suitable for checking into your version control systems alongside your code. See the [.prompt files reference](../reference/prompt-file-format) reference for more details.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#serialization-prompt-file", + "title": "Serialization (.prompt file)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-engineering", + "title": "Prompt Engineering", + }, + { + "slug": "docs/v5/development/overview#serialization-prompt-file", + "title": "Serialization (.prompt file)", + }, + ], + "description": "The .prompt file is heavily inspired by [MDX](https://mdxjs.com/), with model and hyperparameters specified in a YAML header alongside a JSX-inspired format for your Chat Template.", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#format", + "title": "Format", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-engineering", + "title": "Prompt Engineering", + }, + { + "slug": "docs/v5/development/overview#serialization-prompt-file", + "title": "Serialization (.prompt file)", + }, + ], + "description": " +\`\`\`jsx Chat +--- +model: gpt-4o +temperature: 0.7 +max_tokens: -1 +top_p: 1.0 +presence_penalty: 0.0 +frequency_penalty: 0.0 +provider: openai +endpoint: chat +tools: [ + { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": [ + "celsius", + "fahrenheit" + ] + } + }, + "required": [ + "location" + ] + }, + "source": "inline" + } +] +--- + + + You are a weather bot designed to provide users with accurate and up-to-date weather information. + +You have access to a tool called \`get_current_weather\`, which allows you to fetch the current weather conditions for any given location. Users can request the current weather by specifying a city and state, and optionally, they can choose the unit of temperature (Celsius or Fahrenheit). + +Your responses should be clear, concise, and friendly, providing all relevant weather details such as temperature, humidity, wind speed, and any other important information. + +Always ensure to confirm the location and unit of measurement when responding to user inquiries. + + +\`\`\` + +\`\`\`jsx Completion +--- +model: claude-2 +temperature: 0.7 +max_tokens: 256 +top_p: 1.0 +provider: anthropic +endpoint: complete +--- +Autocomplete the sentence. + +Context: {{context}} + +{{sentence}} +\`\`\` + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#basic-examples", + "title": "Basic examples", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/v5/development/overview#prompt-engineering", + "title": "Prompt Engineering", + }, + ], + "description": "{/* WIP - for gartner /start */} + +When working with sensitive data in your AI applications, it's crucial to handle it securely. Humanloop provides options to help you manage sensitive information while still benefiting from our platform's features. + +If you need to process sensitive data without storing it in Humanloop, you can use the \`save: false\` parameter when making calls to the API or logging data. This ensures that only metadata about the request is stored, while the actual sensitive content is not persisted in our systems. + +For PII detection, you can set up [Guardrails](/docs/observability/alerts-and-guardrails) to detect and prevent the generation of sensitive information. + +{/* WIP - for gartner /end */}", + "indexSegmentId": "0", + "slug": "docs/v5/development/overview#dealing-with-sensitive-data", + "title": "Dealing with sensitive data", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Learn how to create a Prompt in Humanloop using the UI or SDK, version it, and use it to generate responses from your AI models. Prompt management is a key part of the Humanloop platform. + +How to create, version and use a Prompt in Humanloop + +Humanloop acts as a registry of your [Prompts](/docs/concepts/prompts) so you can centrally manage all their versions and [Logs](/docs/concepts/logs), and evaluate and improve your AI systems. + +This guide will show you how to create a Prompt [in the UI](#create-a-prompt-in-the-ui) or [via the SDK/API](#create-a-prompt-using-the-sdk). + + +**Prerequisite**: A Humanloop account. + +You can create an account now by going to the [Sign up page](https://app.humanloop.com/signup). + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-prompt", + "title": "Create a Prompt", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": " +### Create a Prompt File + +When you first open Humanloop you’ll see your File navigation on the left. Click ‘**+ New**’ and create a **Prompt**. + + + +In the sidebar, rename this file to "Comedian Bot" now or later. + +### Create the Prompt template in the Editor + +The left hand side of the screen defines your Prompt – the parameters such as model, temperature and template. The right hand side is a single chat session with this Prompt. + + + +Click the "**+ Message**" button within the chat template to add a system message to the chat template. + + + +Add the following templated message to the chat template. + +\`\`\` +You are a funny comedian. Write a joke about {{topic}}. +\`\`\` + +This message forms the chat template. It has an input slot called \`topic\` (surrounded by two curly brackets) for an input value that is provided each time you call this Prompt. + +On the right hand side of the page, you’ll now see a box in the **Inputs** section for \`topic\`. + +1. Add a value for\`topic\` e.g. music, jogging, whatever. +2. Click **Run** in the bottom right of the page. + +This will call OpenAI’s model and return the assistant response. Feel free to try other values, the model is _very_ funny. + +You now have a first version of your prompt that you can use. + +### Commit your first version of this Prompt + +1. Click the **Commit** button +2. Put “initial version” in the commit message field +3. Click **Commit** + + + +### View the logs + +Under the Prompt File click ‘Logs’ to view all the generations from this Prompt + +Click on a row to see the details of what version of the prompt generated it. From here you can give feedback to that generation, see performance metrics, open up this example in the Editor, or add this log to a dataset. + + + + + +---", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-prompt#create-a-prompt-in-the-ui", + "title": "Create a Prompt in the UI", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "The Humanloop Python SDK allows you to programmatically create and version your [Prompts](/docs/concepts/prompts) in Humanloop, and log generations from your models. This guide will show you how to create a Prompt using the SDK. + +Note that you can also version your prompts dynamically with every Prompt + + +**Prerequisite**: A Humanloop SDK Key. + +You can get this from your [Organisation Settings page](https://app.humanloop.com/account/api-keys) if you have the [right permissions](/docs/admin/access-roles). + + + + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + + + + +After initializing the SDK client, you can call the Prompt creation endpoint. + + + +### Create the Prompt + + + +### Go to the App + +Go to the [Humanloop app](https://app.humanloop.com) and you will see your new project as a Prompt with the model config you just created. + + + +You now have a Prompt in Humanloop that contains your initial version. You can call the Prompt in Editor and invite team members by going to your organization's members page.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-prompt#create-a-prompt-using-the-sdk", + "title": "Create a Prompt using the SDK", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "With the Prompt set up, you can now integrate it into your app by following the [Call a Prompt Guide](/docs/development/guides/call-prompt).", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-prompt#next-steps", + "title": "Next Steps", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Learn how to call your Prompts that are managed on Humanloop. + +A guide on how to call your Prompts that are managed on Humanloop. + +This guide will show you how to call your Prompts as an API, enabling you to generate responses from the large language model that uses the versioned template and parameters. If you want to call an LLM with a prompt that you're defining in code follow the guide on [Calling a LLM through the Humanloop Proxy](/docs/development/guides/proxy-model-calls).", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/call-prompt", + "title": "Call a Prompt", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/development/guides/call-prompt#call-an-existing-prompt", + "title": "Call an existing Prompt", + }, + ], + "description": "Before you can use the new \`prompt.call()\` method, you need to have a Prompt. If you don't have one, please follow our [Prompt creation](/docs/development/guides/create-prompt) guide first. + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + + + + + + +### Get the Prompt ID + +In Humanloop, navigate to the Prompt and copy the Prompt ID by clicking on the ID in the top right corner of the screen. + + + +### Use the SDK to call your model + +Now you can use the SDK to generate completions and log the results to your Prompt using the new \`prompt.call()\` method: + + + + + +### Navigate to the **Logs** tab of the Prompt + +And you'll be able to see the recorded inputs, messages and responses of your chat. + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/call-prompt#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": " + + + +🎉 Now that you have chat messages flowing through your Prompt you can start to log your end user feedback to evaluate and improve your models.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/call-prompt#call-the-llm-with-a-prompt-that-youre-defining-in-code", + "title": "Call the LLM with a prompt that you're defining in code", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Learn how to leverage the Humanloop proxy to call various AI models from different providers using a unified interface + +A guide on calling large language model providers (OpenAI, Anthropic, Google etc.) through the Humanloop API + +This guide walks you through how to call various models through the Humanloop API. This is the same as [calling a Prompt](/docs/development/guides/call-prompt) but instead of using a version of the Prompt that is defined in Humanloop, you're setting the template and parameters directly in code. + +The benefits of using the Humanloop proxy are: + +- consistent interface across different AI providers: OpenAI, Anthropic, Google and more – see [the full list of supported models](/docs/v5/reference/supported-models) +- all your requests are logged automatically +- creates versions of your Prompts automatically, so you can track performance over time +- can call multiple providers while managing API keys centrally (you can also supply keys at runtime) + +In this guide, we'll cover how to call LLMs using the Humanloop proxy.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/proxy-model-calls", + "title": "Proxy Model Calls", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/development/guides/proxy-model-calls#call-the-llm-with-a-prompt-that-youre-defining-in-code", + "title": "Call the LLM with a prompt that you're defining in code", + }, + ], + "description": " + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + + + + + + +### Use the SDK to call your model + +Now you can use the SDK to generate completions and log the results to your Prompt using the new \`prompt.call()\` method: + + + + + +### Navigate to the **Logs** tab of the Prompt + +And you'll be able to see the recorded inputs, messages and responses of your chat. + + + +🎉 Now that you have chat messages flowing through your Prompt you can start to log your end user feedback to evaluate and improve your models.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/proxy-model-calls#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Learn how to create a Prompt in Humanloop using the UI or SDK, version it, and use it to generate responses from your AI models. Prompt management is a key part of the Humanloop platform. + +How to log generations from any large language model (LLM) to Humanloop + +This guide will show **you** how to capture the [Logs](/docs/concepts/logs) of your LLM calls into Humanloop. + +The easiest way to log LLM generations to Humanloop is to use the \`Prompt.call()\` method (see the guide on [Calling a Prompt](/docs/development/guides/call-prompt)). You will only need to supply prompt ID and the inputs needed by the prompt template, and the endpoint will handle fetching the latest template, making the LLM call and logging the result. + +However, there may be scenarios that you wish to manage the LLM provider calls directly in your own code instead of relying on Humanloop. For example, you may be using an LLM provider that is not directly supported by Humanloop such as a custom self-hosted model, or you may want to avoid adding Humanloop to the critical path of the LLM API calls.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/log-to-a-prompt", + "title": "Log to a Prompt", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/development/guides/create-prompt) guide first. + + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/log-to-a-prompt#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "To log LLM generations to Humanloop, you will need to make a call to the \`/prompts/log\` endpoint. + +Note that you can either specify a version of the Prompt you are logging against - in which case you will need to take care that you are supplying the correct version ID and inputs. Or you can supply the full prompt and a new version will be created if it has not been seen before. + + + +### Get your Prompt + +Fetch a Prompt from Humanloop by specifying the ID. You can ignore this step if your prompts are created dynamically in code. + + + + + +Here's how to do this in code: + + + + +\`\`\`python +import re +PROMPT_ID = "" +prompt = humanloop.prompt.get(id=PROMPT_ID) + +# This will fill the prompt template with the variables +def fill_template(template, variables): + def replace_variable(match): + variable = match.group(1).strip() + if variable in variables: + return variables[variable] + else: + raise ValueError(f"Error: Variable '{variable}' is missing.") + + filled_template = [] + for message in template: + content = message['content'] + filled_content = re.sub(r'\\{\\{\\s*(.*?)\\s*\\}\\}', replace_variable, content) + filled_template.append({**message, 'content': filled_content}) + + return filled_template + +template = fill_template(prompt.template, {"language": "Python"}) +\`\`\` + + + + +\`\`\`typescript +const prompt = humanloop.prompts.get({ id: "" }); + +function fillTemplate( + template: Message[], + variables: { [key: string]: string } +): Message[] { + const replaceVariable = (match: string, variable: string) => { + const trimmedVariable = variable.trim(); + if (trimmedVariable in variables) { + return variables[trimmedVariable]; + } else { + throw new Error(\`Error: Variable '\${trimmedVariable}' is missing.\`); + } + }; + + return template.map((message) => { + const filledContent = message.content.replace( + /\\{\\{\\s*(.*?)\\s*\\}\\}/g, + replaceVariable + ); + return { ...message, content: filledContent }; + }); + + const template = fillTemplate(prompt.template, { language: "Python" }); +} +\`\`\` + + + + +### Call your Prompt + +This can be your own model, or any other LLM provider. Here is an example of calling OpenAI: + + + + +\`\`\`python +import openai + +client = openai.OpenAI(api_key="") + +messages = template + [{ "role": "user", "content": "explain how async works" }] + +chat_completion = client.chat.completions.create( + messages=messages, + model=config.model, + temperature=config.temperature +) + +# Parse the output from the OpenAI response. +output = chat_completion.choices[0].message.content +\`\`\` + + + + +\`\`\`typescript +import { OpenAI } from "openai"; + +const client = new OpenAI({ + apiKey: "", +}); + +const messages = template.concat([ + { role: "user", content: "explain how async works" }, +]); + +const chatCompletion = await client.chat.completions.create({ + messages: messages, + model: prompt.model, + temperature: prompt.temperature, +}); + +const output = chatCompletion.choices[0].message.content; +\`\`\` + + + + +### Log the result + +Finally, log the result to your project: + + + + + + +\`\`\`python + +# Get the output from the OpenAI response. +output_message = chat_completion.choices[0].message + +# Log the inputs, outputs and config to your project. +log = humanloop.prompts.log( + id=PROMPT_ID, + output_message=output_message, + messages=messages, +) +\`\`\` + + + + + +\`\`\`typescript +// Get the output from the OpenAI response. +const outputMessage = chatCompletion.choices[0].message; + +const log = humanloop.prompts.log({ + id: PROMPT_ID, + output_message: outputMessage, + messages: messages, +}); +\`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/log-to-a-prompt#log-data-to-your-prompt", + "title": "Log data to your Prompt", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Learn how to use tool calling in your large language models and intract with it in the Humanloop Prompt Editor. + +How to use Tool Calling to have the model interact with external functions. + +Humanloop's Prompt Editor supports for Tool Calling functionality, enabling models to interact with external functions. This feature, akin to [OpenAI's function calling](https://platform.openai.com/docs/v5/guides/function-calling/function-calling), is implemented through JSON Schema tools in Humanloop. These Tools adhere to the widely-used JSON Schema syntax, providing a standardized way to define data structures. + +Within the editor, you have the flexibility to create inline JSON Schema tools as part of your model configuration. This capability allows you to establish a structured framework for the model's responses, enhancing control and predictability. Throughout this guide, we'll explore the process of leveraging these tools within the editor environment.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/tool-calling-editor", + "title": "Tool calling in Editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/development/guides/create-prompt) guide first.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/tool-calling-editor#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "To create and use a tool follow the following steps: + + +### **Open the editor** +Go to a Prompt and open the Editor. + +### **Select a model that supports Tool Calling** + + + To view the list of models that support Tool calling, see the [Models + page](/docs/reference/supported-models#models). + + + +In the editor, you'll see an option to select the model. Choose a model like \`gpt-4o\` which supports Tool Calling. + +### **Define the Tool** + +To get started with tool definition, it's recommended to begin with one of our preloaded example tools. For this guide, we'll use the \`get_current_weather\` tool. Select this from the dropdown menu of preloaded examples. + +If you choose to edit or create your own tool, you'll need to use the universal [JSON Schema syntax](https://json-schema.org/). When creating a custom tool, it should correspond to a function you have defined in your own code. The JSON Schema you define here specifies the parameters and structure you want the AI model to use when interacting with your function. + + + +### **Test it out** + +Now, let's test our tool by inputting a relevant query. Since we're working with a weather-related tool, try typing: \`What's the weather in Boston?\`. This should prompt OpenAI to respond using the parameters we've defined. + + + +Keep in mind that the model's use of the tool depends on the relevance of the user's input. For instance, a question like '_how are you today?_' is unlikely to trigger a weather-related tool response. + + + +### **Check assistant response for a tool call** + +Upon successful setup, the assistant should respond by invoking the tool, providing both the tool's name and the required data. For our \`get_current_weather\` tool, the response might look like this: + +\`\`\` +get_current_weather({ + "location": "London" +}) +\`\`\` + +### **Input tool response** + +After the tool call, the editor will automatically add a partially filled tool message for you to complete. + +You can paste in the exact response that the Tool would respond with. For prototyping purposes, you can also just simulate the repsonse yourself (LLMs can handle it!). Provide in a mock response: + +To input the tool response: + +1. Find the tool response field in the editor. +2. Enter theresponse matching the expected format, such as: + \`\`\`json + { "temperature": 12, "condition": "drizzle", "unit": "celsius" } + \`\`\` + +Remember, the goal is to simulate the tool's output as if it were actually fetching real-time weather data. This allows you to test and refine your prompt and tool interaction without needing to implement the actual weather API. + +### **Submit tool response** + +After entering the simulated tool response, click on the 'Run' button to send the Tool message to the AI model. + +### **Review assistant response** + +The assistant should now respond using the information provided in your simulated tool response. For example, if you input that the weather in London was drizzling at 12°C, the assistant might say: + +\`Based on the current weather data, it's drizzling in London with a temperature of 12 degrees Celsius.\` + +This response demonstrates how the AI model incorporates the tool's output into its reply, providing a more contextual and data-driven answer. + +Example of assistant response using tool data + +### **Iterate and refine** + +Feel free to experiment with different queries and simulated tool responses. This iterative process helps you fine-tune your prompt and understand how the AI model interacts with the tool, ultimately leading to more effective and accurate responses in your application. + +### **Save your Prompt** + +By saving your prompt, you're creating a new version that includes the tool configuration. + + + +Congratulations! You've successfully learned how to use tool calling in the Humanloop editor. This powerful feature allows you to simulate and test tool interactions, helping you create more dynamic and context-aware AI applications. + +Keep experimenting with different scenarios and tool responses to fully explore the capabilities of your AI model and create even more impressive applications!", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/tool-calling-editor#create-and-use-a-tool-in-the-prompt-editor", + "title": "Create and use a tool in the Prompt Editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "After you've created and tested your tool configuration, you might want to reuse it across multiple prompts. Humanloop allows you to link a tool, making it easier to share and manage tool configurations. + +For more detailed instructions on how to link and manage tools, check out our guide on [Linking a JSON Schema Tool](/docs/development/guides/link-json-schema-tool).", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/tool-calling-editor#next-steps", + "title": "Next steps", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Learn how to use the Snippet tool to manage common text snippets that you want to reuse across your different prompts. + +How to re-use common text snippets in your Prompt templates with the Snippet Tool + +The Snippet Tool supports managing common text 'snippets' that you want to reuse across your different prompts. A Snippet tool acts as a simple key/value store, where the key is the name of the common re-usable text snippet and the value is the corresponding text. + +For example, you may have some common persona descriptions that you found to be effective across a range of your LLM features. Or maybe you have some specific formatting instructions that you find yourself re-using again and again in your prompts. + +Instead of needing to copy and paste between your editor sessions and keep track of which projects you edited, you can instead inject the text into your prompt using the Snippet tool.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/reusable-snippets", + "title": "Re-use snippets in Prompts", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/development/guides/reusable-snippets#create-and-use-a-snippet-tool", + "title": "Create and use a Snippet Tool", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/development/guides/create-prompt) guide first. + + + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) + + + +To create and use a snippet tool, follow the following steps: + + + +### Create a new Snippet Tool + + + +### Name the Tool + +Name it \`assistant-personalities\` and give it a description \`Useful assistant personalities\`. + +### Add a key called "helpful-assistant" + +In the initial box add \`helpful-assistant\` and give it a value of \`You are a helpful assistant. You like to tell jokes and if anyone asks your name is Sam.\` + +### Add another key called "grumpy-assistant" + +Let's add another key-value pair, so press the **Add a key/value pair** button and add a new key of \`grumpy-assistant\` and give it a value of \`You are a grumpy assistant. You rarely try to help people and if anyone asks your name is Freddy.\`. + + + +### Press **Create Tool**. + +Now your Snippets are set up, you can use it to populate strings in your prompt templates across your projects. + +### Navigate to the **Editor** + +Go to the Editor of your previously created project. + +### Add \`{{ assistant-personalities(key) }}\` to your prompt + +Delete the existing prompt template and add \`{{ assistant-personalities(key) }}\` to your prompt. + + +Double curly bracket syntax is used to call a tool in the editor. Inside the curly brackets you put the tool name, e.g. \`{{ my-tool-name(key) }}\`. + + + +### Enter the key as an input + +In the input area set the value to \`helpful-assistant\`. The tool requires an input value to be provided for the key. When adding the tool an inputs field will appear in the top right of the editor where you can specify your \`key\`. + +### Press the **Run** button + +Start the chat with the LLM and you can see the response of the LLM, as well as, see the key you previously defined add in the Chat on the right. + + + +### Change the key to \`grumpy-assistant\`. + + + If you want to see the corresponding snippet to the key you either need to + first run the conversation to fetch the string and see it in the preview. + + +### Play with the LLM + +Ask the LLM, \`I'm a customer and need help solving this issue. Can you help?'\`. You should see a grumpy response from "Freddy" now. + +If you have a specific key you would like to hardcode in the prompt, you can define it using the literal key value: \`{{ ("key") }}\`, so in this case it would be \`{{ assistant-personalities("grumpy-assistant") }}\`. Delete the \`grumpy-assistant\` field and add it into your chat template. + +### **Save** your Prompt. + +If you're happy with you're grumpy assistant, save this new version of your Prompt. + + + + + +The Snippet tool is particularly useful because you can define passages of text once in a Snippet tool and reuse them across multiple prompts, without needing to copy/paste them and manually keep them all in sync. Editing the values in your tool allows the changes to automatically propagate to the Prompts when you update them, as long as the key is the same. + + +Since the values for a Snippet are saved on the Tool, not the Prompt, changing +the values (or keys) defined in your Snippet tools can affect the Prompt's +behaviour in way that won't be captured by the Prompt's version. + +This could be exactly what you intend, however caution should still be used make sure the +changes are expected. + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/reusable-snippets#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Environments are a tagging system for deploying Prompts. They enable you to deploy maintain a streamlined deployment workflow and keep track of different versions of Prompts. + +How to create and use environments to manage the deployment lifecycle of Prompts + +[Environments](/docs/concepts/environments) are a tagging system for deploying Prompts. They enable you to deploy maintain a streamlined deployment workflow and keep track of different versions of Prompts. + +The default environment is your production environment. Everytime you fetch a Prompt, Tool, Dataset etc. without specifying an alternative environment or specific version, the version that is tagged with the default environment is returned.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-deployment-environments", + "title": "Create deployment environments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": " + +### Go to your [Environments](https://app.humanloop.com/account/environments) tab in your Organization's settings. + +### Click the '**+ Environment**' button to open the new environment dialog + +### Assign a custom name to the environment + +We recommend something short. For example, you could use \`staging\`, \`prod\`, \`qa\`, \`dev\`, \`testing\`, etc. This name is be used to identify the environment in the UI and in the API. + +### Click **Create**. + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-deployment-environments#create-an-environment", + "title": "Create an environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": " + Only Enterprise customers can update their default environment +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-deployment-environments#updating-the-default-environment", + "title": "Updating the default environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/development/guides/create-deployment-environments#updating-the-default-environment", + "title": "Updating the default environment", + }, + ], + "description": "- You have multiple environments - if not first go through the [Create an + environment](/docs/development/guides/create-deployment-environments#create-an-environment) section. + +Every organization will have a default environment. This can be updated by the following: + + + +### Go to your Organization's [Environments](https://app.humanloop.com/account/environments) page. + +### Click on the dropdown menu of an environment that is not already the default. + +### Click the **Make default** option + +A dialog will open asking you if you are certain this is a change you want to make. If so, click the **Make default** button. + +### Verify the default tag has moved to the environment you selected. + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-deployment-environments#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Environments enable you to deploy model configurations and experiments, making them accessible via API, while also maintaining a streamlined production workflow. + +In this guide we will demonstrate how to create and use environments. + +[Environments](/docs/concepts/environments) are a tagging system for deploying Prompts. They enable you to deploy maintain a streamlined deployment workflow and keep track of different versions of Prompts.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/deploy-to-environment", + "title": "Deploy to an environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/development/guides/create-prompt) guide first. + + +To deploy a model config to an environment: + + + +### Navigate to the **Dashboard** of your Prompt + +### Click the dropdown menu of the environment. + + + +### Click the **Change deployment** button + +### Select a version + +Choose the version you want to deploy from the list of available versions. + + + +### Click the **Deploy** button. + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/deploy-to-environment#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Directories can be used to group together related files. This is useful for organizing your work. + +Directories group together related files + +This guide will show you how to create a [Directory](/docs/concepts/directories) in the UI. A directory is a collection of files and other directories. + + +**Prerequisite**: A Humanloop account. + +You can create an account now by going to the [Sign up page](https://app.humanloop.com/signup). + +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-directory", + "title": "Create a Directory", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": " +### Create a Directory + +1. Open Humanloop and navigate to the File navigation on the left. +2. Click '**+ New**' and select **Directory**. +3. Name your new directory, for example, "Summarization App". + + + You can call files and directories anything you want. Capital letters, spaces + are all ok! + + +Creating a new directory + +### (Optional) Move a File into the Directory + +1. In the File navigation sidebar, right-click on the file in the sidebar and select "Move" from the context menu +2. Choose the destination directory + +Moving a file into a directory + + + +You have now successfully created a directory and moved a file into it. This organization can help you manage your AI applications more efficiently within Humanloop.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/create-directory#create-a-directory", + "title": "Create a Directory", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Learn how to create a JSON Schema tool that can be reused across multiple Prompts. + +Managing and versioning a Tool seperately from your Prompts + +It's possible to re-use tool definitions them across multiple Prompts. You achieve this by having a Prompt file which defines a JSON schema, and linking them to your Prompt. + +You achieve this by creating a \`JSON Schema\` Tool and linking that to as many Prompts as you need. + +Importantly, updates to this Tool defined here will then propagate automatically to all the Prompts you've linked it to, without having to deploy new versions of the Prompt.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/link-tool", + "title": "Link a Tool to a Prompt", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/development/guides/create-prompt) guide first.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/link-tool#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "To create a reusable JSON Schema tool for your organization, follow these steps: + + +### Create a new Tool file + +Navigate to the homepage or sidebar and click the 'New File' button. + +### Choose the JSON Schema Tool type + +From the available options, select **Json Schema** as the Tool type. + +### Define your tool's structure + +Paste the following JSON into the provided dialog to define your tool's structure: + +\`\`\`json +{ + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": ["celsius", "fahrenheit"] + } + }, + "required": ["location"] + } +} +\`\`\` + +If you choose to edit or create your own tool, you'll need to use the universal [JSON Schema syntax](https://json-schema.org/). When creating a custom tool, it should correspond to a function you have defined in your own code. The JSON Schema you define here specifies the parameters and structure you want the AI model to use when interacting with your function. + +### Commit this version of the Tool + +Press the **Commit** button to commit this version of the Tool, and set it as the default version by deploying it. + +### Navigate to the **Editor** of a Prompt + +Switch to a model that supports tool calling, such as \`gpt-4o\`. + + + To view the list of models that support Tool calling, see the [Models + page](/docs/reference/supported-models#models). + + + +### **Add Tool** to the Prompt definition. + +### Select 'Link existing Tool' + +In the dropdown, go to the **Link existing tool** option. You should see your \`get_current_weather\` tool, click on it to link it to your editor. + + + +### Test that the Prompt is working with the tool + +Now that your Tool is linked you can start using it. In the **Chat** section, in the **User** input, enter \`"what is the weather in london?"\` + +Press the **Run** button. + +You should see the **Assistant** respond with the tool response and a new **Tool** field inserted to allow you to insert an answer. In this case, put in \`22\` into the tool response and press **Run**. + + + +The model will respond with \`The current weather in London is 22 degrees\`. + +### Commit the Prompt + +You've linked a Tool to your Prompt, now let's save it. Press the **Save** button and name your Prompt \`weather-model-config\`. + +### (Optional) Update the Tool + +Now that's we've linked your \`get_current_weather\` tool to your Prompt, let's try updating the base tool and see how it propagates the changes down into your saved \`weather-model-config\` config. Navigate back to the Tool in the sidebar and go to the Editor. + +### Update the Tool + +Let's update both the name, as well as the required fields. For the name, update it to \`get_current_weather_updated\` and for the required fields, add \`unit\` as a required field. The should look like this now: + +\`\`\`json +{ + "name": "get_current_weather_updated", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": ["celsius", "fahrenheit"] + } + }, + "required": ["location", "unit"] + } +} +\`\`\` + +### Commit and deploy the Tool + +Press the **Commmmit** button and then follow the steps to deloy this version of the Tool. + +Your Tool is now updated. + +### Try the Prompt again + +Navigate back to your previous project, and open the editor. You should see the \`weather-model-config\` loaded as the active config. You should also be able to see the name of your previously linked tool in the Tools section now says \`get_current_weather_updated\`. + +In the Chat section enter in again, \`What is the weather in london?\`, and press **Run** again. + +### Check the response + +You should see the updated tool response, and how it now contains the \`unit\` field. Congratulations, you've successfully linked a JSON Schema tool to your Prompt. + + + + + + + When updating your Tool, remember that the change will affect all the Prompts + that link to it. Be careful when making updates to not inadvertently change + something you didn't intend. +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/link-tool#creating-and-linking-a-json-schema-tool", + "title": "Creating and linking a JSON Schema Tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "Learn how to create a JSON Schema tool that can be reused across multiple Prompts. + +Managing and versioning a Tool seperately from your Prompts + +It's possible to re-use tool definitions them across multiple Prompts. You achieve this by having a Prompt file which defines a JSON schema, and linking them to your Prompt. + +You can achieve this by first defining an instance of a \`JSON Schema\` tool in your global Tools tab. Here you can define a tool once, such as \`get_current_weather(location: string, unit: 'celsius' | 'fahrenheit')\`, and then link that to as many model configs as you need within the Editor as shown below. + +Importantly, updates to the \`get_current_weather\` \`JSON Schema\` tool defined here will then propagate automatically to all the model configs you've linked it to, without having to publish new versions of the prompt.", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/link-json-schema-tool", + "title": "Link JSON Schema Tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": "- A Humanloop account - you can create one by going to our sign up page. +- Be on a paid plan - your organization has been upgraded from the Free tier. +- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. + +To create a JSON Schema tool that can be reusable across your organization, follow the following steps:", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/link-json-schema-tool#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/development/overview", + "title": "Prompt Management + AI Engineering", + }, + { + "slug": "docs/development/guides/create-prompt", + "title": "How-To Guides", + }, + ], + "description": " + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) + + + + +### Create a Tool file + +Click the 'New File' button on the homepage or in the sidebar. + +### Select the **Json Schema** Tool type + +### Define your tool + +Set the \`name\`, \`description\`, and \`parameters\` values. Our guide for using [Tool Calling in the Prompt Editor](./tool-calling-editor) can be a useful reference in this case. We can use the \`get_current_weather\` schema in this case. Paste the following into the dialog: + +\`\`\`json +{ + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": ["celsius", "fahrenheit"] + } + }, + "required": ["location"] + } +} +\`\`\` + +### Press the **Create** button. + +### Navigate to the **Editor** + +Make sure you are using a model that supports tool calling, such as \`gpt-4o\`. + + +See the [Models page](/docs/v5/supported-models) for a list of models that support tool calling. + + +### **Add Tool** to the Prompt definition. + +### Select 'Link existing Tool' + +In the dropdown, go to the **Link existing tool** option. You should see your \`get_current_weather\` tool, click on it to link it to your editor. + + + +### Test that the Prompt is working with the tool + +Now that your tool is linked you can start using it as you would normally use an inline tool. In the **Chat** section, in the **User** input, enter "What is the weather in london?" + +Press the **Run** button. + +You should see the **Assistant** respond with the tool response and a new **Tool** field inserted to allow you to insert an answer. In this case, put in \`22\` into the tool response and press **Run**. + + + +The model will respond with \`The current weather in London is 22 degrees\`. + +### Save the Prompt + +You've linked a tool to your model config, now let's save it. Press the **Save** button and name your model config \`weather-model-config\`. + +### (Optional) Update the Tool + +Now that's we've linked your \`get_current_weather\` tool to your model config, let's try updating the base tool and see how it propagates the changes down into your saved \`weather-model-config\` config. Navigate back to the Tools in the sidebar and go to the Editor. + +### Change the tool. + +Let's update both the name, as well as the required fields. For the name, update it to \`get_current_weather_updated\` and for the required fields, add \`unit\` as a required field. The should look like this now: + +\`\`\`json +{ + "name": "get_current_weather_updated", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": ["celsius", "fahrenheit"] + } + }, + "required": ["location", "unit"] + } +} +\`\`\` + +### Save the Tool + +Press the **Save** button, then the following **Continue** button to confirm. + +Your tool is now updated. + +### Try the Prompt again + +Navigate back to your previous project, and open the editor. You should see the \`weather-model-config\` loaded as the active config. You should also be able to see the name of your previously linked tool in the Tools section now says \`get_current_weather_updated\`. + +In the Chat section enter in again, \`What is the weather in london?\`, and press **Run** again. + +### Check the response + +You should see the updated tool response, and how it now contains the \`unit\` field. Congratulations, you've successfully linked a JSON Schema tool to your model config. + + + + + + + When updating your organization-level JSON Schema tools, remember that the + change will affect all the places you've previously linked the tool. Be + careful when making updates to not inadvertently change something you didn't + intend. +", + "indexSegmentId": "0", + "slug": "docs/v5/development/guides/link-json-schema-tool#creating-and-linking-a-json-schema-tool", + "title": "Creating and linking a JSON Schema Tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + ], + "description": "Learn how to set up and use Humanloop's evaluation framework to test and track the performance of your AI apps. + +Humanloop's evaluation framework allows you to test and track the performance of your LLM apps in a rigorous way. + +A key part of successful prompt engineering and deployment for LLMs is a robust evaluation framework. In this section we provide guides for how to set up Humanloop's evaluation framework for your Prompts and Tools. + +The core entity in the Humanloop evaluation framework is an **[Evaluator](/docs/concepts/evaluators)** - a function you define which takes an LLM-generated log as an argument and returns a **judgment**. +The judgment is typically either a boolean or a number, indicating how well the model performed according to criteria you determine based on your use case.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/overview", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + ], + "description": "Currently, you can define three different Evaluator sources on Humanloop: + +- **Code** - using simple deterministic rules based judgments against attributes like cost, token usage, latency, regex rules on the output, etc. These are generally fast and cheap to run at scale. +- **AI** - using other foundation models to provide judgments on the output. This allows for more qualitative and nuanced judgments for a fraction of the cost of human judgments. +- **Human** - getting gold standard judgments from either end users of your application, or internal domain experts. This can be the most expensive and slowest option, but also the most reliable.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/overview#sources-of-judgement", + "title": "Sources of Judgement", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + ], + "description": "Evaluators can be deployed on Humanloop to support both testing new versions of your Prompts and Tools during development and for monitoring live apps that are already in production.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/overview#online-monitoring-vs-offline-evaluation", + "title": "Online Monitoring vs. Offline Evaluation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/v5/evaluation/overview#online-monitoring-vs-offline-evaluation", + "title": "Online Monitoring vs. Offline Evaluation", + }, + ], + "description": "Evaluators are run against the [Logs](../concepts/logs) generated by your AI applications. Typically, they are used to monitor deployed model performance over time and check for drift or degradation in performance. +The Evaluator in this case only takes a single argument - the \`log\` generated by the model. The Evaluator is expected to return a judgment based on the Log, +which can be used to trigger alerts or other actions in your monitoring system. + +See our [Monitoring guides](../observability/overview) for more details.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/overview#online-monitoring", + "title": "Online Monitoring", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/v5/evaluation/overview#online-monitoring-vs-offline-evaluation", + "title": "Online Monitoring vs. Offline Evaluation", + }, + ], + "description": "Offline Evaluators are combined with predefined [**Datasets**](../concepts/datasets) in order to evaluate your application as you iterate in your prompt engineering workflow, or to test for regressions in a CI environment. + +A test Dataset is a collection of **Datapoints**, which are roughly analogous to unit tests or test cases in traditional programming. Each datapoint specifies inputs to your model and (optionally) some target data. + +When you run an offline evaluation, a Log needs to be generated using the inputs of each Datapoint and the version of the application being evaluated. Evaluators then need to be run against each Log to provide judgements, +which are then aggregated to provide an overall score for the application. Evaluators in this case take the generated \`Log\` and the \`testcase\` datapoint that gave rise to it as arguments. + +See our guides on [creating Datasets](./guides/create-dataset) and [running Evaluations](../evaluation/overview) for more details.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/overview#offline-evaluations", + "title": "Offline Evaluations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + ], + "description": "Evaluations require the following to be generated: + +1. Logs for the datapoints. +2. Evaluator results for those generated logs. + +Using the Evaluations API, Humanloop offers the ability to generate logs either within the Humanloop runtime, or within your own runtime. +Similarly, Evaluators which are defined within the Humanloop UI can be executed in the Humanloop runtime, whereas Evaluators defined in your code can be executed in your runtime and the results posted back to Humanloop. +This provides flexibility for supporting more complex evaluation workflows.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/overview#humanloop-runtime-vs-your-runtime", + "title": "Humanloop runtime vs. your runtime", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + ], + "description": "Humanloop's evaluation framework can be integrated into your CI/CD pipeline, allowing you to automatically test your AI applications as part of your development workflow. This integration enables you to catch potential regressions or performance issues before they make it to production. + +One powerful way to leverage this integration is by triggering evaluation runs in GitHub Actions and having the results commented directly on your Pull Requests. This provides immediate feedback to developers and reviewers about the impact of changes on your AI application's performance. + +To set up CI/CD evaluation follow the guide on [CI/CD Integration](/docs/evaluation/guides/cicd-integration).", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/overview#cicd-integration", + "title": "CI/CD Integration", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "In this guide, we will walk through comparing the outputs from multiple Prompts side-by-side using the Humanloop Editor environment and using diffs to help debugging. + +You can compare Prompt versions interactively side-by-side to get a sense for how their behaviour differs; before then triggering more systematic [Evaluations](/docs/evaluation/guides/run-evaluation). +All the interactions in Editor are stored as Logs within your Prompt and can be inspected further and [added to a Dataset](/docs/evaluation/guides/create-dataset#create-a-dataset-from-logs) for Evaluations.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/comparing-prompt-editor", + "title": "Compare and Debug Prompts", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/development/guides/create-prompt) guide first.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/comparing-prompt-editor#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "In this example we will use a simple Support Agent Prompt that answers user queries about Humanloop's product and docs. + +Support agent base prompt. + + + ### Create a new version of your Prompt + Open your Prompt in the Editor and expand **Parameters** and change some details such as the choice of \`Model\`. + In this example, we change from \`gpt-4o\` to \`gpt-4o-mini\`. + This will create a new uncommitted version of the Prompt. + + Support agent change prompt + + Now commit the new version of your Prompt by selecting the blue **Commit** button over **Parameters** and providing a helpful commit message like: + \`\`\`text + Changed model to gpt-4o-mini + \`\`\` + + ### Load up two versions of your Prompt in the Editor + To load up the previous version side-by-side, select the menu beside the Load button and select the **New panel** option (depending on your screen real-estate, you can add more than 2 panels). + Support agent add panel + + Then select to *Load* button in the new panel and select another version of your Prompt to compare. + + Support agent load version + + ### Compare the outputs of both versions + + Now you can run the same user messages through both models to compare their behaviours live side-by-side. + + Support agent compare version + +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/comparing-prompt-editor#compare-prompt-versions", + "title": "Compare Prompt versions", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "When debugging more complex Prompts, it's important to understand what changes were made between different versions. Humanloop provides a diff view to support this. + + + +### Navigate to your Prompt dashboard + +In the sidebar, select the **Dashboard** section under your Prompt file, where you will find a table of all your historic Prompt versions. + +Support agent dashboard + +### Select the versions to compare + +In the table, select two rows you would like understand the changes between. Then select the **Compare Versions** button above the table. + +Support agent diff view + + + +1. While in the **Compare** tab, look for the **Diff** section. +2. This section will highlight the changes made between the selected versions, showing additions, deletions, and modifications. +3. Use this diff view to understand how specific changes in your prompt configuration affect the output. + +By following these steps, you can effectively compare different versions of your Prompts and iterate on your instructions to improve performance.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/comparing-prompt-editor#view-prompt-diff-for-debugging", + "title": "View Prompt diff for debugging", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "Learn how to create Datasets in Humanloop to define fixed examples for your projects, and build up a collection of input-output pairs for evaluation and fine-tuning. + +In this guide, we will walk through the different ways to create Datasets on Humanloop. + +[Datasets](../../concepts/datasets) are a collection of input-output pairs that can be used to evaluate your Prompts, Tools or even Evaluators. + +This guide will show you how to create Datasets in Humanloop in three different ways: + +- [Create a Dataset from existing Logs](#create-a-dataset-from-logs) - useful for curating Datasets based on how your AI application has been behaving in the wild. +- [Upload data from CSV](#upload-a-dataset-from-csv) - useful for quickly uploading existing tabular data you've collected outside of Humanloop. +- [Upload via API](#upload-a-dataset-via-api) - useful for uploading more complex Datasets that may have nested JSON structures, which are difficult to represent in tabular .CSV format, and for integrating with your existing data pipelines.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/create-dataset", + "title": "Create a Dataset", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "**Prerequisites** + +You should have an existing [Prompt](../../concepts/prompts) on Humanloop and already generated some [Logs](../../concepts/logs). +Follow our guide on [creating a Prompt](../../development/guides/create-prompt). + +**Steps** + +To create a Dataset from existing Logs: + + + +### Navigate to the **Logs** of your Prompt +Our Prompt in this example is a Support Agent that answers user queries about Humanloop's product and docs: + +Navigate to the Logs table of your Prompt. + +### Select a subset of the Logs to add +Filter logs on a criteria of interest, such as the version of the Prompt used, then multi-select Logs. + +In the menu in the top right of the page, select **Add to dataset**. + + +Filter and select logs of interest. + + +### Add to a new Dataset + +Provide a name of the new Dataset and click **Create** (or you can click **add to existing Dataset** to append the selection to an existing Dataset). +Then provide a suitable commit message describing the datapoints you've added. + +Create a new dataset from logs. + +You will then see the new Dataset appear at the same level in the filesystem as your Prompt. + +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/create-dataset#create-a-dataset-from-logs", + "title": "Create a Dataset from Logs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "**Prerequisites** + +You should have an existing [Prompt](../../concepts/prompts) on Humanloop with a variable defined with our double curly bracket syntax \`{{variable}}\`. If not, first follow our guide on [creating a Prompt](../../development/guides/create-prompt). + +In this example, we'll use a Prompt that categorises user queries about Humanloop's product and docs by which feature they relate to. + +An example Prompt with a variable \`{{query}}\`. + + +**Steps** + +To create a dataset from a CSV file, we'll first create a CSV in Google Sheets that contains values for our Prompt variable \`{{query}}\` and then upload it to a Dataset on Humanloop. + + +### Create a CSV file. + - In our Google Sheets example below, we have a column called \`query\` which contains possible values for our Prompt variable \`{{query}}\`. You can include as many columns as you have variables in your Prompt template. + - There is additionally a column called \`target\` which will populate the target output for the classifier Prompt. In this case, we use simple strings to define the target. + - More complex Datapoints that contain \`messages\` and structured objects for targets are suppoerted, but are harder to incorporate into a CSV file as they tend to be hard-to-read JSON. If you need more complex Datapoints, [use the API](#upload-via-api) instead. + +A CSV file in Google Sheets defining query and taget pairs for our Classifier Prompt. + +### Export the Google Sheet to CSV + +In Google sheets, choose **File** → **Download** → **Comma-separated values (.csv)** + +### Create a new Dataset File + +On Humanloop, select *New* at the bottom of the left hand sidebar, then select *Dataset*. + +Creat a new File from the sidebar on Humanloop. + + +### Click **Upload CSV** + +First name your dataset when prompted in the sidebar, then select the **Upload CSV** button and drag and drop the CSV file you created above using the file explorer. +You will then be prompted to provide a commit message to describe the initial state of the dataset. + +Uploading a CSV file to create a dataset. + +### Follow the link in the pop-up to inspect the Dataset created + +You'll see the input-output pairs that were included in the CSV file and you can the rows to inspect and edit the individual Datapoints. + +Inspect the Dataset created from the CSV file. + +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/create-dataset#upload-a-dataset-from-csv", + "title": "Upload a Dataset from CSV", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "**Prerequisites** + +If you are using the SDK, the only prerequisite is to have the SDK installed and configured. If you are using the API directly, you will need to have an API key. + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + + + + +**Steps** + +Using the API is a great way to integrate Humanloop with your existing data pipeline or just to once-off upload a more complex Dataset that is hard to represent in a CSV file, such as one that contains an array of messages and JSON targets. + + + +### Post data to the Datasets API +We first define some sample data that contains user messages and desired responses from our [Support Agent Prompt](#create-a-dataset-from-logs) and call the \`POST /datasets\` endpoint to upload it as follows: + + + +### Inspect the uploaded Dataset + +After running this code, in your Humanloop workspace you will now see a Dataset called \`Support Query Ground Truth\` (or whatever value was in \`path\`) with your sample data. + +Inspect the Dataset uploaded via API. +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/create-dataset#upload-a-dataset-via-api", + "title": "Upload a Dataset via API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "🎉 Now that you have Datasets defined in Humanloop, you can leverage our [Evaluations](../overview) feature to systematically measure and improve the performance of your AI applications. +See our guides on [setting up Evaluators](./llm-judge) and [Running an Evaluation](./run-evaluation) to get started.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/create-dataset#next-steps", + "title": "Next steps", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "Learn how to create a code Evaluators in Humanloop to assess the performance of your AI applications. This guide covers setting up an offline evaluator, writing evaluation logic, and using the debug console. + +In this guide we will show how to create and use a code Evaluator in Humanloop + +A code [Evaluator](../../concepts/evaluators) is a Python function that takes a generated [Log](../../concepts/logs) (and optionally a testcase [Datapoint](../../concepts/datasets) if comparing to expected results) as input and returns a **judgement**. +The judgement is in the form of a boolean or number that measures some criteria of the generated Log defined within the code. + +Code Evaluators provide a flexible way to evaluate the performance of your AI applications, allowing you to re-use existing evaluation packages as well as define custom evaluation heuristics. + +We support a fully featured Python environment; details on the supported packages can be found in the [environment reference](/docs/v5/reference/python-environment)", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/code-based-evaluator", + "title": "Set up a code Evaluator", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "You should have an existing [Prompt](../../concepts/prompts) to evaluate and already generated some [Logs](../../concepts/logs). +Follow our guide on [creating a Prompt](../../development/guides/create-prompt). + +In this example, we'll reference a Prompt that categorises a user query about Humanloop's product and docs by which feature it relates to. + +An example Prompt with a variable \`{{query}}\`.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/code-based-evaluator#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": " + +### Create a new Evaluator + +- Click the **New** button at the bottom of the left-hand sidebar, select **Evaluator**, then select **Code**. + +Create code evaluator. + +- Give the Evaluator a name when prompted in the sidebar, for example \`Category Validator\`. + +### Define the Evaluator code + +After creating the Evaluator, you will automatically be taken to the code editor. +For this example, our Evaluator will check that the feature category returned by the Prompt is from the list of allowed feature categories. We want to ensure our categoriser isn't hallucinating new features. + +- Make sure the **Mode** of the Evaluator is set to **Online** in the options on the left. +- Copy and paste the following code into the code editor: + +\`\`\`python Python + +ALLOWED_FEATURES = [ + "Prompt Editor", + "Model Integrations", + "Online Monitoring", + "Offline Evaluations", + "Dataset Management", + "User Management", + "Roles Based Access Control", + "Deployment Options", + "Collaboration", + "Agents and chaining" +] + +def validate_feature(log): + print(f"Full log output: \\n {log['output']}") + # Parse the final line of the log output to get the returned category + feature = log["output"].split("\\n")[-1] + return feature in ALLOWED_FEATURES +\`\`\` + + + You can define multiple functions in the code Editor to organize your + evaluation logic. The final function defined is used as the main Evaluator + entry point that takes the Log argument and returns a valid judgement. + + +### Debug the code with Prompt Logs + +- In the debug console beneath where you pasted the code, click **Select Prompt or Dataset** and find and select the Prompt you're evaluating. + The debug console will load a sample of Logs from that Prompt. + +The debug console for testing the code. + +- Click the **Run** button at the far right of one of the loaded Logs to trigger a debug run. This causes the code to be executed with the selected Log as input and populates the **Result** column. +- Inspect the output of the executed code by selecting the arrow to the right of **Result**. + +Inspect evaluator log in debug console. + +### Commit the code + +Now that you've validated the behaviour, commit the code by selecting the **Commit** button at the top right of the Editor and provide a suitable commit message describing your changes. + +### Inspect Evaluator logs + +Navigate to the **Logs** tab of the Evaluator to see and debug all the historic usages of this Evaluator. + +Evaluator logs table. + +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/code-based-evaluator#create-a-code-evaluator", + "title": "Create a code Evaluator", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "Now that you have an Evaluator, you can use it to monitor the performance of your Prompt by linking it so that it is automatically run on new Logs. + + + +### Link the Evaluator to the Prompt + +- Navigate to the **Dashboard** of your Prompt +- Select the **Monitoring** button above the graph and select **Connect Evaluators**. +- Find and select the Evaluator you just created and click **Chose**. + +Select Evaluator for monitoring. + + + You can link to a deployed version of the Evaluator by choosing the + environment such as \`production\`, or you can link to a specific version of the + Evaluator. If you want changes deployed to your Evaluator to be automatically + reflected in Monitoring, link to the environment, otherwise link to a specific + version. + + +This linking results in: - An additional graph on your Prompt dashboard showing the Evaluator results over time. - An additional column in your Prompt Versions table showing the aggregated Evaluator results for each version. - An additional column in your Logs table showing the Evaluator results for each Log. + +### Generate new Logs + +Navigate to the **Editor** tab of your Prompt and generate a new Log by entering a query and clicking **Run**. + +### Inspect the Monitoring results + +Navigate to the **Logs** tab of your Prompt and see the result of the linked Evaluator against the new Log. You can filter on this value in order to [create a Dataset](/docs/evaluation/guides/create-dataset) of interesting examples. + +See the results of monitoring on your logs. + +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/code-based-evaluator#monitor-a-prompt", + "title": "Monitor a Prompt", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "- Explore [AI Evaluators](/docs/evaluation/guides/llm-as-a-judge) and [Human Evaluators](/docs/evaluation/guides/human-evaluators) to complement your code-based judgements for more qualitative and subjective criteria. +- Combine your Evaluator with a [Dataset](/docs/concepts/datasets) to run [Evaluations](/docs/evaluation/guides/run-evaluation) to systematically compare the performance of different versions of your AI application.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/code-based-evaluator#next-steps", + "title": "Next steps", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "Learn how to use LLM as a judge to check for PII in Logs. + +In this guide, we will set up an LLM evaluator to check for PII (Personally Identifiable Information) in Logs. + +LLMs can be used for evaluating the quality and characteristics of other AI-generated outputs. When correctly prompted, LLMs can act as impartial judges, providing insights and assessments that might be challenging or time-consuming for humans to perform at scale. + +In this guide, we'll explore how to setup an LLM as an [AI Evaluator](../../concepts/evaluators) in Humanloop, demonstrating their effectiveness in assessing various aspects of AI-generated content, such as checking for the presence of Personally Identifiable Information (PII). + +An AI [Evaluator](../../concepts/evaluators) is a Prompt that takes attributes from a generated [Log](../../concepts/logs) (and optionally from a testcase [Datapoint](../../concepts/dataset) if comparing to expected results) as context and returns a **judgement**. +The judgement is in the form of a boolean or number that measures some criteria of the generated Log defined within the Prompt instructions.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/llm-as-a-judge", + "title": "Set up LLM as a Judge", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "You should have an existing [Prompt](../../concepts/prompts) to evaluate and already generated some [Logs](../../concepts/logs). +Follow our guide on [creating a Prompt](../../development/guides/create-prompt). + +In this example we will use a simple Support Agent Prompt that answers user queries about Humanloop's product and docs. + +Support agent base prompt.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/llm-as-a-judge#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": " + +### Create a new Evaluator + +- Click the **New** button at the bottom of the left-hand sidebar, select **Evaluator**, then select **AI**. + +- Give the Evaluator a name when prompted in the sidebar, for example \`PII Identifier\`. + +### Define the Evaluator Prompt + +After creating the Evaluator, you will automatically be taken to the Evaluator editor. +For this example, our Evaluator will check whether the request to, or response from, our support agent contains PII. We want to understand whether this is a potential issue that we wish to mitigate with additional [Guardrails](../../observability/alerts-and-guardails) in our agent workflow. + +- Make sure the **Mode** of the Evaluator is set to **Online** in the options on the left. +- Copy and paste the following Prompt into the Editor: + +\`\`\`text +You are a helpful assistant. Your job is to observe the requests and outputs to a support agent and identify whether or not they contain any PII. + +Examples of PII information are: +- Names +- Addresses +- Bank account information +- Job information + +Here is the request and response information: +### +Request: +{{log.messages}} +### +Response: +{{log.output_message}} +### + +Your response should contain the rationale and the final binary true/false verdict as to whether PII exists in the request resposne. The final true/false verdit should be on a new line at the end. +\`\`\` + + + +In the Prompt Editor for an LLM evaluator, you have access to the underlying \`log\` you are evaluating as well as the \`testcase\` Datapoint that gave rise to it if you are using a Dataset for **offline** Evaluations. +These are accessed with the standard \`{{ variable }}\` syntax, enhanced with a familiar dot notation to pick out specific values from inside the \`log\` and \`testcase\` objects. + +For example, suppose you are evaluating a Log object like this. + +\`\`\`json +{ + "id": "data_B3RmIu9aA5FibdtXP7CkO", + "prompt": {...}, + "inputs": { + "query": "What is the meaning of life?", + }, + "messages": [] + "output": "I'm sorry, as an AI I don't have the capacity to understand the meaning of life.", + "metadata": {...}, + ...etc +} +\`\`\` + +In the LLM Evaluator Prompt, \`{{ log.inputs.query }}\` will be replaced with the actual query in the final prompt sent to the LLM Evaluator. + +In order to get access to the fully populated Prompt that was sent in the underlying Log, you can use the special variable \`{{ log_prompt }}\`. + + + +### Debug the code with Prompt Logs + +- In the debug console beneath where you pasted the code, click **Select Prompt or Dataset** and find and select the Prompt you're evaluating. + The debug console will load a sample of Logs from that Prompt. + +The debug console for testing the Evaluator Prompt. + +- Click the **Run** button at the far right of one of the loaded Logs to trigger a debug run. This causes the Evaluator Prompt to be called with the selected Log attributes as input and populates the **Result** column. +- Inspect the output of the executed code by selecting the arrow to the right of **Result**. + +Inspect evaluator log in debug console. + +### Commit the code + +Now that you've validated the behaviour, commit the Evaluator Prompt by selecting the **Commit** button at the top right of the Editor and provide a suitable commit message describing your changes. + +### Inspect Evaluator logs + +Navigate to the **Logs** tab of the Evaluator to see and debug all the historic usages of this Evaluator. + +Evaluator logs table. + +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/llm-as-a-judge#create-an-llm-evaluator", + "title": "Create an LLM Evaluator", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "- Explore [Code Evaluators](./ocde-based-evaluator) and [Human Evaluators](./human-evaluator) to complement your AI judgements. +- Combine your Evaluator with a [Dataset](../../concepts/datasets) to run [Evaluations](./run-evaluation) to systematically compare the performance of different versions of your AI application.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/llm-as-a-judge#next-steps", + "title": "Next steps", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "Learn how to set up a Human Evaluator in Humanloop. Human Evaluators allow your subject-matter experts and end-users to provide feedback on Prompt Logs. + +In this guide we will show how to create and use a Human Evaluator in Humanloop + +Human Evaluators allow your subject-matter experts and end-users to provide feedback on Prompt Logs. +These Evaluators can be attached to Prompts and Evaluations.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/human-evaluators", + "title": "Set up a Human Evaluator", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "This section will bring you through creating and setting up a Human Evaluator. +As an example, we'll use a "Tone" Evaluator that allows feedback to be provided by +selecting from a list of options. + + + +### Create a new Evaluator + +- Click the **New** button at the bottom of the left-hand sidebar, select **Evaluator**, then select **Human**. + +![New Evaluator dialog](file:03326b58-9d6d-4c66-aa94-3afbe47f8ddd) + +- Give the Evaluator a name when prompted in the sidebar, for example "Tone". + +![Created Human Evaluator being renamed to "Tone"](file:f6746330-2e87-4769-98eb-3d02a37b547a) + +### Define the Judgment Schema + +After creating the Evaluator, you will automatically be taken to the Editor. +Here, you can define the schema detailing the kinds of judgments to be applied for the Evaluator. +The Evaluator will be initialized to a 5-point rating scale by default. + +In this example, we'll set up a feedback schema for a "Tone" Evaluator. +See the [Return types documentation](../../concepts/evaluators#return-types) for more information on return types. + +- Select **Multi-select** within the **Return type** dropdown. "Multi-select" allows you to apply multiple options to a single Log. +- Add the following options, and set the valence for each: + - Enthusiastic [positive] + - Informative [postiive] + - Repetitive [negative] + - Technical [negative] +- Update the instructions to "Select all options that apply to the output." + +![Tone evaluator set up with options and instructions](file:9c477a6f-8107-4320-8cd9-ff101f262b7a) + + +### Commit and deploy the Evaluator + +- Click **Commit** in the top-right corner. +- Enter "Added initial tone options" as a commit message. Click **Commit**. + +![Commit dialog over the "Tone" Evaluator](file:4621f64b-49b5-4c15-b28a-4765e446568a) + +- In the "Version committed" dialog, click **Deploy**. +- Select the checkbox for you default Environment (usually named "production"), and confirm your deployment. + +![Dialog deploying the "Tone" Evaluator to the "production" Environment](file:729f39cf-708d-4294-adca-63c9a7ebfab9) + + + +:tada: You've now created a Human Evaluator that can be used to collect feedback on Prompt Logs.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/human-evaluators#creating-a-human-evaluator", + "title": "Creating a Human Evaluator", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "- [Use Human Evaluators in Evaluations](./run-human-evaluation) to collect annotations on Prompt Logs from subject-matter experts. +- [Attach Human Evaluators to Prompts](../../observability/guides/capture-user-feedback) to collect end-user feedback", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/human-evaluators#next-steps", + "title": "Next steps", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "How to use Humanloop to Evaluate multiple different Prompts across a Dataset. + +In this guide, we will walk through how to run an Evaluation to compare multiple different Prompts across a Dataset when Prompts and Evaluators are run on Humanloop. + + + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) + + + +An **Evaluation** on Humanloop leverages a [Dataset](../../concepts/datasets), a set of [Evaluators](../../concepts/evaluators) and different versions of a [Prompt](../../concepts/prompts) to compare. + +The Dataset contains testcases describing the inputs (and optionally the expected results) for a given task. The Evaluators define the criteria for judging the performance of the Prompts when executed using these inputs. + +Each of the Prompt versions you want to compare are run against the same Dataset producing [Logs](../../concepts/logs); judgements are then provided by Evaluators. +The Evaluation then uses these judgements to provide a summary report of the performance allowing you to systematically compare the performance of the different Prompt versions.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/run-evaluation", + "title": "Run an Evaluation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "- A set of [Prompt](../../concepts/prompts) versions you want to compare - see the guide on [creating Prompts](./comparing-prompt-editor). +- A [Dataset](../../concepts/datasets) containing testcases for the task - see the guide on [creating a Dataset](./create-dataset). +- At least one [Evaluator](../../concepts/evaluators) to judge the performance of the Prompts - see the guides on creating [Code](/docs/evaluation/guides/code-based-evaluator), [AI](/docs/evaluation/guides/llm-as-a-judge) and [Human](/docs/evaluation/guides/human-evaluators) Evaluators. + + + You can combine multiple different types of Evaluator in a single Evaluation. + For example, you might use an AI Evaluator to judge the quality of the output + of the Prompt and a code Evaluator to check the output is below some latency + and cost threshold. + + +For this example, we're going to evaluate the performance of a Support Agent that responds to user queries about Humanloop's product and documentation. +Our goal is to understand which base model between \`gpt-4o\`, \`gpt-4o-mini\` and \`claude-3-5-sonnet-20240620\` is most appropriate for this task. + +Variations of the Support Agent Prompt, each using a different base model.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/run-evaluation#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "For **Product and AI teams**, the ability to trigger Evaluations against a Dataset within the Humanloop UI allows them to systematically compare the performance to make informed decisions on which to deploy. + + +### Navigate to the Evaluations tab of your Prompt + +- On the left-hand sidebar, click on the **Evaluations** tab beneath your Prompt. +- Click the **Evaluate** button top right, which presents the setup panel for the Evaluation. + +Prompt Evaluations tab. + +### Setup the Evaluation + +- Select a Dataset using **+Dataset**. +- Add the Prompt versions you want to compare using **+Version** - note you can multi-select versions in the modal resulting in multiple columns. +- Add the Evaluators you want to use to judge the performance of the Prompts using **+Evaluator**. By default, **Cost**, **Tokens** and **Latency** Evaluators are pre-selected. + + +By default the system will re-use Logs if they exist for the chosen Dataset, Prompts and Evaluators. This makes it easy to extend reports without paying the cost of re-running your Prompts and Evaluators. + +If you want to force the system to re-run the Prompts against the Dataset producing a new batch of Logs, you can select the **Manage** button in the setup panel and choose **+New Batch**. + + + +- Select **Save** to trigger the Evaluation report. You will see the report below the setup panel populate with a progress bar and status pending as the Logs are generated on Humanloop. + +In progress Evaluation report + + + This guide assumes both the Prompt and Evaluator Logs are generated using the + Humanloop runtime. For certain use cases where more flexibility is required, + the runtime for producing Logs instead lives in your code - see our guide on + [Logging](../../development/guides/logging), which also works with our + Evaluations feature. We have a guide for how to run Evaluations with Logs + generated in your code coming soon! + + +### Review the results + +It will generally take at least a couple of minutes before the Evaluation report is marked as **completed** as the system generates all the required Prompt and Evaluator Logs. + +Once the report is completed, you can review the performance of the different Prompt versions using the Evaluators you selected. + +- The top spider plot provides you with a summary of the average Evaluator performance across all the Prompt versions. + In our case, \`gpt-4o\`, although on average slightly slower and more expensive on average, is significantly better when it comes to **User Satisfaction**. + +Evaluation Spider plot + +- Below the spider plot, you can see the breakdown of performance per Evaluator. + +Evaluation Evaluator stats breakdown + +- To drill into and debug the Logs that were generated, select the **Logs** button top right of the Evaluation report. + This brings you to the Evaluation Logs table and you can filter and review logs to understand the performance better and replay Logs in our Prompt Editor. + +Drill down to Evaluatoin Logs. + +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/run-evaluation#run-an-evaluation-via-ui", + "title": "Run an Evaluation via UI", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "For **Engineering teams**, the ability to trigger Evaluations via the API allows them to integrate the Evaluation process into their existing pipelines. + + + This content is currently under development. Please refer to our [V4 + documentation](https://docs.humanloop.com/v4) for the current docs. + + + +[//]: # "" +[//]: # +[//]: # "### Get the required IDs" +[//]: # +[//]: # "In order to trigger an Evaluation via the API, you will need the IDs of the Dataset, Prompts and Evaluator versions you want to include." +[//]: # +[//]: # "- You can find the IDs of your Dataset, Prompts and Evaluators by navigating to the respective dashboards in the UI" +[//]: # +[//]: # "- Alternatively, you can use the API to list the" +[//]: # +[//]: # +[//]: # "### Trigger an Evaluation" +[//]: # +[//]: # "Once you have the IDs, you can populate the request to trigger an Evaluation." +[//]: # +[//]: # "" +[//]: # +[//]: # "### Inspect the uploaded Dataset" +[//]: # +[//]: # "### Review the results" +[//]: # +[//]: # "You can" +[//]: # +[//]: # "Or you can poll the Evaluation status until it is marked as completed and then review the results."", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/run-evaluation#run-an-evaluation-via-api", + "title": "Run an Evaluation via API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/evaluation/guides/run-evaluation#run-an-evaluation-via-api", + "title": "Run an Evaluation via API", + }, + ], + "description": "- Incorporate this Evaluation process into your Prompt engineering and deployment workflow. +- Setup Evaluations where the runtime for producing Logs lives in your code - see our guide on [Logging](/docs/development/guides/log-to-a-prompt). +- Utilise Evaluations as part of your [CI/CD pipeline](/docs/evaluation/guides/cicd-integration)", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/run-evaluation#next-steps", + "title": "Next Steps", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "Learn how to set up an Evaluation that uses Human Evaluators to collect annotations from your subject-matter experts. + +A walkthrough for setting up Human Evaluators in Evaluations to allow subject-matter experts to evaluate your LLM outputs. + +By attaching Human Evaluators to your Evaluations, you can collect annotations from your subject-matter experts +to evaluate the quality of your Prompts' outputs.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/run-human-evaluation", + "title": "Run a Human Evaluation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "- You have set up a Human Evaluator appropriate for your use-case. If not, follow our guide to [create a Human Evaluator](/docs/evaluation/guides/human-evaluators). +- You are familiar with setting up Evaluations in Humanloop. See our guide to creating [Evaluations](/docs/evaluation/guides/run-evaluation).", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/run-human-evaluation#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": " + +### Create a new Evaluation + +- Go to the **Evaluations** tab of a Prompt. +- Click **Evaluate** in the top-right corner. +- Set up your Evaluation by selecting a Dataset and some Prompt versions to evaluate. See our guide to [Running an Evaluation in the UI](/docs/evaluation/guides/run-evaluation#run-an-evaluation-via-ui) for more details. +- Click the **+ Evaluator** button to add a Human Evaluator to the Evaluation. This will bring up a dialog where you can select the + Human Evaluator you created earlier. Within this dialog, select the "Tone" Evaluator, and then select its latest version which should be at the top. +- Click **+ Choose** to add the Evaluator to the Evaluation. + +![Evaluation set up with "Tone" Evaluator](file:b4c54b52-ccd5-4c2f-80bc-8bed0ee6d1ac) + +- Click **Save/Run** to create the Evaluation and start generating Logs to evaluate. + +### Apply judgments to generated Logs + +When you save an Evaluation, Humanloop will automatically generate Logs using the specified Prompt versions and Dataset. +When the required Logs are generated, a "Human Evaluations incomplete" message will be displayed in a toolbar at the top of the Evaluation. + +- Go to the **Logs** tab of the Evaluation to view the generated Logs. + +![Evaluation Logs tab](file:ebb9ef20-736e-4190-b73d-5d551cf17a01) + +- Expand the drawer for a Log by clicking on the row to view the Log details. Here, you can view the generated output and apply judgments to the Log. + +![Evaluation Log drawer](file:56fd15e9-3af3-4293-974e-73c63af599e8) + +- When you've completed applying judgments, click on **Mark as complete** in the toolbar at the top of the page. This will update the Evaluation's status. + +![Completed Evaluation](file:f2b32305-588d-42a0-9c04-97d6ba843236) + +### Review judgments stats + +Go to the **Overview** tab of the Evaluation to view the aggregate stats of the judgments applied to the Logs. +On this page, an aggregate view of the judgments provided to each Prompt version is displayed in a table, allowing you to compare the performance of different Prompt versions. + +![Evaluation Overview tab](file:b7ae74b2-02be-4594-b6fd-9320eff04cf4) + +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/run-human-evaluation#using-a-human-evaluator-in-an-evaluation", + "title": "Using a Human Evaluator in an Evaluation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "Learn how to automate LLM evaluations as part of your CI/CD pipeline using Humanloop and GitHub Actions. + +In this guide, we will walk through setting up CI/CD integration for Humanloop evaluations using GitHub Actions. + + + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/cicd-integration", + "title": "Set up CI/CD Evaluations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": "Integrating Humanloop evaluations into your CI/CD pipeline allows you to automatically test your AI applications as part of your development workflow. This guide will walk you through setting up this integration using GitHub Actions.", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/cicd-integration#setting-up-cicd-integration-with-github-actions", + "title": "Setting up CI/CD Integration with GitHub Actions", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/evaluation/guides/cicd-integration#setting-up-cicd-integration-with-github-actions", + "title": "Setting up CI/CD Integration with GitHub Actions", + }, + ], + "description": "- A GitHub repository for your project +- A Humanloop account with access to Evaluations +- A Prompt and Dataset set up in Humanloop +- An Evaluator configured in Humanloop", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/cicd-integration#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/evaluation/overview", + "title": "Evaluation", + }, + { + "slug": "docs/evaluation/guides/comparing-prompt-editor", + "title": "How-To Guides", + }, + ], + "description": " +### Create a GitHub Actions Workflow + +In your GitHub repository, create a new file \`.github/workflows/humanloop-eval.yml\` with the following content: + + + This content is currently under development. Please refer to our [V4 + documentation](https://docs.humanloop.com/v4) for the current docs. + + + +\`\`\`yaml + +\`\`\` + +", + "indexSegmentId": "0", + "slug": "docs/v5/evaluation/guides/cicd-integration#steps-to-set-up-cicd-integration", + "title": "Steps to Set Up CI/CD Integration", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + ], + "description": "Discover how to implement Humanloop's advanced LLM monitoring system for real-time performance tracking, evaluation, and optimization of your AI models in production environments. + +Humanloop allows you to monitor LLMs which extends beyond simple logging but also allows you to track and police the high-level behavior of your LLMs + +At the core of Humanloop's monitoring system are **evaluators** - functions you define that analyze LLM-generated logs and produce **evaluations**. These evaluations can be boolean flags or numerical scores, providing insights into how well your model is performing based on criteria specific to your use case. + +Evaluators in the monitoring context act as continuous checks on your deployed models, helping you maintain quality, detect anomalies, and ensure your LLMs are behaving as expected in the production environment.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/overview", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + ], + "description": "Humanloop supports three types of evaluators for monitoring: + +- **Code based** - Using our in-browser editor, define simple Python functions to act as evaluators. These run automatically on your logs. +- **LLM as judge** - Use LLMs to evaluate the outputs of other Prompts or Tools. Our editor lets you create prompts that pass log data to a model for assessment. This is ideal for subjective evaluations like tone and factual accuracy. These also run automatically. +- **Human evaluators** - Collect feedback from human evaluators using our feedback API. This allows you to incorporate human judgment or in-app actions into your monitoring process. + +Both code-based and LLM-based evaluators run automatically on your logs, while human evaluators provide a way to incorporate manual feedback when needed.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/overview#types", + "title": "Types", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + ], + "description": "While monitoring and evaluation are closely related, they serve different purposes in the lifecycle of your LLM-powered applications: + +- **Monitoring** is the continuous assessment of your deployed models in production environments. It involves real-time analysis of logs generated by your live system, providing immediate insights into performance and behavior. + +- **Evaluation**, on the other hand, typically refers to offline testing and assessment during the development phase or for periodic performance checks. + +Humanloop's monitoring capabilities allow you to set up evaluators that automatically run on logs from your production environment, giving you real-time insights into your model's performance. + +For detailed information on offline evaluation and testing during development, please refer to our [Evaluation guide](/docs/evaluation/overview).", + "indexSegmentId": "0", + "slug": "docs/v5/observability/overview#monitoring-vs-evaluation", + "title": "Monitoring vs Evaluation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + ], + "description": "This guide demonstrates how to configure automated alerts for your AI system's performance using Humanloop's monitoring capabilities. + +Learn how to set up alerts in Humanloop using monitoring evaluators and webhooks. + +{/* WIP - for gartner /start */} + +Monitoring your AI system's performance in production is crucial for maintaining quality and catching issues early. Humanloop provides tools to set up automated alerts based on your custom evaluation criteria, and guardrails to ensure that issues are prevented from happening.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails", + "title": "Alerts and Guardrails", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + ], + "description": "Alerting is a critical component of any robust monitoring system. It allows you to be promptly notified of important events or issues in your Humanloop environment. By setting up alerts, you can proactively respond to potential problems and maintain the health and performance of your AI system. + +Alerting in Humanloop takes advantage of the [Evaluators](/docs/concepts/evaluators) you have enabled, and uses webhooks to send alerts to your preferred communication channels.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#alerting", + "title": "Alerting", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/v5/observability/alerts-and-guardrails#alerting", + "title": "Alerting", + }, + ], + "description": "Alerts are triggered when certain predefined conditions are met in your system. These conditions are typically monitored using log evaluators, which continuously analyze system logs and metrics.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#overview", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/v5/observability/alerts-and-guardrails#alerting", + "title": "Alerting", + }, + ], + "description": "1. **Performance Issues** + + - Use Case: Alert when API response times exceed a certain threshold. + - Benefit: Quickly identify and address performance bottlenecks. + +2. **Error Rate Spikes** + + - Use Case: Notify when the error rate for a specific service surpasses normal levels. + - Benefit: Detect and investigate unusual error patterns promptly. + +3. **Resource Utilization** + + - Use Case: Alert when CPU or memory usage approaches capacity limits. + - Benefit: Prevent system crashes and maintain optimal performance. + +4. **Security Incidents** + + - Use Case: Notify on multiple failed login attempts or unusual access patterns. + - Benefit: Rapidly respond to potential security breaches. + +5. **Data Quality Issues** + + - Use Case: Alert when incoming data doesn't meet predefined quality standards. + - Benefit: Maintain data integrity and prevent propagation of bad data. + +6. **SLA Violations** + - Use Case: Notify when service level agreements are at risk of being breached. + - Benefit: Proactively manage client expectations and service quality.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#use-cases-for-alerting", + "title": "Use Cases for Alerting", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/v5/observability/alerts-and-guardrails#alerting", + "title": "Alerting", + }, + ], + "description": "1. **Define Clear Thresholds**: Establish meaningful thresholds based on historical data and business requirements. +2. **Prioritize Alerts**: Categorize alerts by severity to ensure critical issues receive immediate attention. +3. **Provide Context**: Include relevant information in alerts to aid in quick diagnosis and resolution. +4. **Avoid Alert Fatigue**: Regularly review and refine alert conditions to minimize false positives. +5. **Establish Escalation Procedures**: Define clear processes for handling and escalating different types of alerts.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#best-practices-for-alerting", + "title": "Best Practices for Alerting", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/v5/observability/alerts-and-guardrails#alerting", + "title": "Alerting", + }, + ], + "description": "Webhooks are a crucial component of Humanloop's alerting system, allowing you to integrate alerts into your existing workflows and communication channels. By leveraging webhooks, you can: + +1. Receive real-time notifications when alert conditions are met +2. Integrate alerts with your preferred messaging platforms (e.g., Slack, Microsoft Teams) +3. Trigger automated responses or workflows in external systems +4. Centralize alert management in your existing incident response tools + +Setting up webhooks enables you to respond quickly to critical events, maintain system health, and streamline your MLOps processes. Many Humanloop users find webhooks invaluable for managing their AI systems effectively at scale. + +For detailed instructions on setting up webhooks, please refer to our [Set up Webhooks](/docs/observability/guides/set-up-webhooks) guide.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#webhooks", + "title": "Webhooks", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + ], + "description": "Guardrails are protective measures implemented to prevent undesired actions or states in your Humanloop environment. They act as a safety net, automatically enforcing rules and limits to maintain system integrity.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#guardrails", + "title": "Guardrails", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/v5/observability/alerts-and-guardrails#guardrails", + "title": "Guardrails", + }, + ], + "description": "Guardrails typically work by setting boundaries on various system parameters and automatically taking action when these boundaries are approached or exceeded.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#overview-1", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + ], + "description": "1. set up evaluators +2. configure them as a guardrail + - specify the type of guardrail (e.g. rate limiting, content moderation, etc.) + - specify the threshold for the guardrail + - specify the action to take when the guardrail is violated", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#how-guardrails-works-in-humanloop", + "title": "How Guardrails works in Humanloop", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/v5/observability/alerts-and-guardrails#how-guardrails-works-in-humanloop", + "title": "How Guardrails works in Humanloop", + }, + ], + "description": "1. **Content Moderation** + + - Use Case: Automatically filter or flag inappropriate, offensive, or harmful content generated by LLMs. + - Benefit: Maintain a safe and respectful environment for users, comply with content policies. + +2. **PII Protection** + + - Use Case: Detect and redact personally identifiable information (PII) in LLM outputs. + - Benefit: Ensure data privacy, comply with regulations like GDPR and CCPA. + +3. **Bias Detection** + + - Use Case: Identify and mitigate biased language or unfair treatment in LLM responses. + - Benefit: Promote fairness and inclusivity, reduce discriminatory outputs. + +4. **Fairness Assurance** + + - Use Case: Ensure equal treatment and representation across different demographic groups in LLM interactions. + - Benefit: Maintain ethical AI practices, avoid reinforcing societal biases. + +5. **Toxicity Filtering** + + - Use Case: Detect and prevent the generation of toxic, abusive, or hateful content. + - Benefit: Create a positive user experience, protect brand reputation. + +6. **Hallucination Protections** + - Use Case: Detect and prevent the generation of false or fabricated information by the LLM. + - Benefit: Ensure output reliability, maintain user trust, and avoid potential misinformation spread.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#use-cases-for-guardrails", + "title": "Use Cases for Guardrails", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/v5/observability/alerts-and-guardrails#how-guardrails-works-in-humanloop", + "title": "How Guardrails works in Humanloop", + }, + ], + "description": "1. **Start Conservative**: Begin with more restrictive guardrails and loosen them as you gain confidence. +2. **Monitor Guardrail Actions**: Keep track of when and why guardrails are triggered to identify patterns. +3. **Regular Reviews**: Periodically assess the effectiveness of your guardrails and adjust as needed. +4. **Provide Override Mechanisms**: Allow authorized personnel to bypass guardrails in controlled situations. +5. **Document Thoroughly**: Maintain clear documentation of all implemented guardrails for team awareness. + +{/* WIP - for gartner /end */}", + "indexSegmentId": "0", + "slug": "docs/v5/observability/alerts-and-guardrails#best-practices-for-implementing-guardrails", + "title": "Best Practices for Implementing Guardrails", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "Learn how to create and use online evaluators to observe the performance of your models. + +In this guide, we will demonstrate how to create and use online evaluators to observe the performance of your models. + + + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) +", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-monitoring", + "title": "Set up Monitoring", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/observability/guides/set-up-monitoring#create-an-online-evaluator", + "title": "Create an online evaluator", + }, + ], + "description": "- You need to have access to evaluations. +- You also need to have a Prompt – if not, please follow our [Prompt creation](/docs/development/guides/create-prompt) guide. +- Finally, you need at least a few logs in your project. Use the **Editor** to generate some logs if you don't have any yet. + +To set up an online Python evaluator: + + +### Go to the **Evaluations** page in one of your projects and select the **Evaluators** tab +### Select **+ New Evaluator** and choose **Code Evaluator** in the dialog + +Selecting the type of a new evaluator + +### From the library of presets on the left-hand side, we'll choose **Valid JSON** for this guide. You'll see a pre-populated evaluator with Python code that checks the output of our model is valid JSON grammar. + +The evaluator editor after selecting **Valid JSON** preset + +### In the debug console at the bottom of the dialog, click **Random logs from project**. The console will be populated with five datapoints from your project. + +The debug console (you can resize this area to make it easier to view the logs) + +### Click the **Run** button at the far right of one of the log rows. After a moment, you'll see the **Result** column populated with a \`True\` or \`False\`. + +The **Valid JSON** evaluator returned \`True\` for this particular log, indicating the text output by the model was grammatically correct JSON. + +### Explore the \`log\` dictionary in the table to help understand what is available on the Python object passed into the evaluator. + +### Click **Create** on the left side of the page. + +", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-monitoring#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": " +### On the new **Valid JSON ** evaluator in the Evaluations tab, toggle the switch to **on** - the evaluator is now activated for the current project. + +Activating the new evaluator to run automatically on your project. + +### Go to the **Editor**, and generate some fresh logs with your model. + +### Over in the **Logs** tab you'll see the new logs. The **Valid JSON** evaluator runs automatically on these new logs, and the results are displayed in the table. + +The **Logs** table includes a column for each activated evaluator in your project. Each activated evaluator runs on any new logs in the project. +", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-monitoring#activate-an-evaluator-for-a-project", + "title": "Activate an evaluator for a project", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/observability/guides/set-up-monitoring#track-the-performance-of-models", + "title": "Track the performance of models", + }, + ], + "description": "- A Humanloop project with a reasonable amount of data. +- An Evaluator activated in that project. + +To track the performance of different model configs in your project: + + + + ### Go to the **Dashboard** tab. + + In the table of model configs at the + bottom, choose a subset of the project's model configs. + +### Use the graph controls + +At the top of the page to select the date range and time granularity +of interest. + +### Review the relative performance + +For each activated Evaluator shown in the graphs, you can see the relative performance of the model configs you selected. + + + + + + +The following Python modules are available to be imported in your code evaluators: + +- \`re\` +- \`math\` +- \`random\` +- \`datetime\` +- \`json\` (useful for validating JSON grammar as per the example above) +- \`jsonschema\` (useful for more fine-grained validation of JSON output - see the in-app example) +- \`sqlglot\` (useful for validating SQL query grammar) +- \`requests\` (useful to make further LLM calls as part of your evaluation - see the in-app example for a suggestion of how to get started). + +", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-monitoring#prerequisites-1", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "Learn how to set up webhooks via API for alerting on your monitoring evaluators. + +In this guide, we will demonstrate how to set up webhooks via API for alerting on your monitoring evaluators. + + + This content is currently under development. Please refer to our [V4 + documentation](https://docs.humanloop.com/v4) for the current docs. + + + + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) + + + +{/* WIP - for gartner */} + +In this guide, we'll walk you through the process of setting up webhooks using the Humanloop API to notify you in Slack when certain events occur with your monitoring evaluators.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-webhooks", + "title": "Set up Webhooks", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "Before you begin, make sure you have: + +- A Humanloop account with API access +- A Slack workspace where you have permissions to add webhooks +- A Humanloop project with at least one LLM model and monitoring evaluator set up + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-webhooks#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "To set up a webhook, you'll use the \`hl.webhook.create()\` method from the Humanloop Python SDK. Here's a step-by-step guide: + + + +### Create a Slack incoming webhook + +1. Go to your Slack workspace and create a new Slack app (or use an existing one). +2. Under "Add features and functionality", choose "Incoming Webhooks" and activate them. +3. Click "Add New Webhook to Workspace" and choose the channel where you want to receive notifications. +4. Copy the webhook URL provided by Slack. + +### Import the Humanloop SDK and initialize the client + +\`\`\`python +import humanloop as hl + +hl.init(api_key="your-api-key") +\`\`\` + +Replace \`"your-api-key"\` with your actual Humanloop API key. + +### Create a webhook + +\`\`\`python +webhook = hl.webhook.create( + url="https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK", + description="Webhook for monitoring evaluator alerts", + events=["EVALUATION_COMPLETED", "DRIFT_DETECTED"], + model_name="your-model-name", + status="ACTIVE", + http_url_spec={ + "secret": "your-shared-secret" + } +) +\`\`\` + +Replace the following: + +- \`"https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK"\` with your Slack webhook URL +- \`"your-model-name"\` with the name of the model you want to monitor +- \`"your-shared-secret"\` with a secret string of your choice for added security + +### Test the webhook + +To test if your webhook is working correctly, you can trigger an evaluation: + +\`\`\`python + +evaluation_run = hl.evaluations.create( + project_id=PROJECT_ID, + config_id=CONFIG_ID, + dataset_id=DATASET_ID, + evaluator_ids=[EVALUATOR_ID], + hl_generated=False, +) +\`\`\` + +Replace \`"your-project-id"\` and \`"your-model-name"\` with your actual project ID and model name. + +", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-webhooks#setting-up-a-webhook", + "title": "Setting up a webhook", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "After setting up the webhook and triggering an evaluation, you should see a message in your specified Slack channel. The message will contain details about the evaluation event, such as: + +\`\`\` +New event: EVALUATION_COMPLETED +Model: your-model-name +Timestamp: 2023-07-29T12:34:56Z +Evaluation ID: eval_123456 +Result: Pass/Fail +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-webhooks#verifying-the-webhook", + "title": "Verifying the webhook", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "You can list, update, or delete webhooks using the following methods: + +\`\`\`python +# List all webhooks +webhooks = hl.webhook.list() + +# Update a webhook +updated_webhook = hl.webhook.update( + id="webhook-id", + description="Updated description", + status="DISABLED" +) + +# Delete a webhook +hl.webhook.delete(id="webhook-id") +\`\`\` + +Replace \`"webhook-id"\` with the ID of the webhook you want to manage.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-webhooks#managing-webhooks", + "title": "Managing webhooks", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "You've now set up a webhook to receive notifications in Slack when your monitoring evaluators complete evaluations or detect drift. This will help you stay informed about the performance and behavior of your LLM models in real-time. + +{/* /WIP - for gartner */}", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/set-up-webhooks#conclusion", + "title": "Conclusion", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "Learn how to record user feedback on your generated Prompt Logs using the Humanloop SDK. + +In this guide, we show how to record end-user feedback using the Humanloop Python SDK. This allows you to monitor how your generations perform with your users. + +This guide shows how to use the Humanloop SDK to record end-user feedback on Logs. + + + +Different use-cases and user interfaces may require different kinds of feedback that need to be mapped to the appropriate end user interaction. +There are broadly 3 important kinds of feedback: + +1. **Explicit feedback**: these are purposeful actions to review the generations. For example, ‘thumbs up/down’ button presses. +2. **Implicit feedback**: indirect actions taken by your users may signal whether the generation was good or bad, for example, whether the user ‘copied’ the generation, ‘saved it’ or ‘dismissed it’ (which is negative feedback). +3. **Free-form feedback**: Corrections and explanations provided by the end-user on the generation. + +You should create Human Evaluators structured to capture the feedback you need. +For example, a Human Evaluator with return type "text" can be used to capture free-form feedback, while a Human Evaluator with return type "multi_select" can be used to capture user actions +that provide implicit feedback. + +If you have not done so, you can follow our guide to [create a Human Evaluator](/docs/evaluation/guides/human-evaluator) to set up the appropriate feedback schema. + +", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/capture-user-feedback", + "title": "Capture user feedback", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/development/guides/create-prompt) guide first. +- You have created a Human Evaluator. This can be done by following the steps in our guide to [Human Evaluator creation](/docs/evaluation/guides/human-evaluators). + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/capture-user-feedback#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "In this example, we'll be attaching a "Tweet Issues" Human Evaluator to an "Impersonator" Prompt. +The specifics of the "Tweet Issues" Evaluator are not important for this guide, but for completeness, it is a Human Evaluator with the return type "multi_select" and options like "Inappropriate", "Too many emojis", "Too long", etc. + + + +### Go to the Prompt's Dashboard + +### Click **Monitoring** in the top right to open the Monitoring Dialog + +![Prompt dashboard showing Monitoring dialog](file:f1cad24c-fe04-4a22-a8a9-1a7035b7bb02) + +### Click **Connect Evaluators** and select the Human Evaluator you created. + +![Dialog connecting the "Tweet Issues" Evaluator as a Monitoring Evaluator](file:08b215e4-b0ef-437d-a168-be8ff4adc9a7) + + + +You should now see the selected Human Evaluator attached to the Prompt in the Monitoring dialog. + +![Monitoring dialog showing the "Tweet Issues" Evaluator attached to the Prompt](file:8d7690fe-b39c-4cf4-9a64-2e88d1048a8a)", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/capture-user-feedback#attach-human-evaluator-to-enable-feedback", + "title": "Attach Human Evaluator to enable feedback", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "With the Human Evaluator attached to the Prompt, you can now record judgments against the Prompt's Logs. +To make API calls to record feedback, you will need the Log ID of the Log you want to record feedback against. +The steps below illustrate a typical workflow for recording feedback against a Log generated in your code. + + + +### Retrieve the Log ID from the \`client.prompts.call()\` response. + +\`\`\`python +log = client.prompts.call( + version_id="prv_qNeXZp9P6T7kdnMIBHIOV", + path="persona", + messages=[{"role": "user", "content": "What really happened at Roswell?"}], + inputs={"person": "Trump"}, +) +log_id = log.id +\`\`\` + +### Call \`client.evaluators.log(...)\` referencing the above Log ID as \`parent_id\` to record user feedback. + +\`\`\`python +feedback_2 = client.evaluators.log( + # Pass the \`log_id\` from the previous step to indicate the Log to record feedback against + parent_id=log_id, + # Here, we're recording feedback against a "Tweet Issues" Human Evaluator, + # which is of type \`multi_select\` and has multiple options to choose from. + path="Feedback Demo/Tweet Issues", + judgment=["Inappropriate", "Too many emojis"], +) + +\`\`\` + + + +The "rating" and "correction" Evaluators are attached to all Prompts by default. +You can record feedback using these Evaluators as well. + +The "rating" Evaluator can be used to record explicit feedback (e.g. from a 👍/👎 button). + +\`\`\`python +rating_log = client.evaluators.log( + parent_id=log_id, + # We're recording feedback using the "rating" Human Evaluator, + # which has 2 options: "good" and "bad". + path="rating", + judgment="good", + + # You can also include the source of the feedback when recording it with the \`user\` parameter. + user="user_123", +) +\`\`\` + +The "correction" Evaluator can be used to record user-provided corrections to the generations (e.g. If the user edits the generation before copying it). + +\`\`\`python +correction_log = client.evaluators.log( + parent_id=log_id, + path="correction", + judgment="NOTHING happened at Roswell, folks! Fake News media pushing ALIEN conspiracy theories. SAD! " + + "I know Area 51, have the best aliens. Roswell? Total hoax! Believe me. 👽🚫 #Roswell #FakeNews", +) +\`\`\` + +If the user removes their feedback (e.g. if the user deselects a previous 👎 feedback), you can record this by passing \`judgment=None\`. + +\`\`\`python +removed_rating_log = client.evaluators.log( + parent_id=log_id, + path="rating", + judgment=None, +) +\`\`\` + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/capture-user-feedback#record-feedback-against-a-log-by-its-id", + "title": "Record feedback against a Log by its ID", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + ], + "description": "You can view the applied in two main ways: through the Logs that the feedback was applied to, and through the Human Evaluator itself.", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/capture-user-feedback#viewing-feedback", + "title": "Viewing feedback", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/observability/guides/capture-user-feedback#viewing-feedback", + "title": "Viewing feedback", + }, + ], + "description": "The feedback recorded for each Log can be viewed in the **Logs** table of your Prompt. + +![Logs table showing feedback applied to Logs](file:04d01f09-c428-418f-940a-d42d8a4eba47) + +Your internal users can also apply feedback to the Logs directly through the Humanloop app. + +![Log drawer showing feedback section](file:eda99eac-1558-4183-ac3b-37e6d2db012f)", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/capture-user-feedback#viewing-feedback-applied-to-logs", + "title": "Viewing Feedback applied to Logs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/observability/overview", + "title": "Observability", + }, + { + "slug": "docs/observability/guides/set-up-monitoring", + "title": "How-To Guides", + }, + { + "slug": "docs/v5/observability/guides/capture-user-feedback#viewing-feedback", + "title": "Viewing feedback", + }, + ], + "description": "Alternatively, you can view all feedback recorded for a specific Evaluator in the **Logs** tab of the Evaluator. +This will display all feedback recorded for the Evaluator across all other Files. + +![Logs table for "Tweet Issues" Evaluator showing feedback](file:03ee0b41-54c4-492e-8d6a-d78edb2c1eac)", + "indexSegmentId": "0", + "slug": "docs/v5/observability/guides/capture-user-feedback#viewing-feedback-through-its-human-evaluator", + "title": "Viewing Feedback through its Human Evaluator", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + ], + "description": "Learn about the different roles and permissions in Humanloop to help you with prompt and data management for large language models. + +Everyone invited to the organization can access all projects currently (controlling project access coming soon). + +A user can be one of the following rolws: + +**Admin:** The highest level of control. They can manage, modify, and oversee the Organization's settings and have full functionality across all projects. + +**Developer:** (Enterprise tier only) Can deploy Files, manage environments, create and add API keys, but lacks the ability to access billing or invite others. + +**Member:** (Enterprise tier only) The basic level of access. Can create and save Files, run Evaluations, but not deploy. Can not see any org-wide API keys.", + "indexSegmentId": "0", + "slug": "docs/v5/admin/access-roles", + "title": "Access roles (RBACs)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + ], + "description": "Here is the full breakdown of roles and access: + +| Action | Member | Developer | Admin | +| :----------------------------- | :----- | :-------- | :---- | +| Create and manage Files | ✔️ | ✔️ | ✔️ | +| Inspect logs and feedback | ✔️ | ✔️ | ✔️ | +| Create and manage Evaluators | ✔️ | ✔️ | ✔️ | +| Run Evaluations | ✔️ | ✔️ | ✔️ | +| Create and manage Datasets | ✔️ | ✔️ | ✔️ | +| Create and manage API keys | | ✔️ | ✔️ | +| Manage prompt deployments | | ✔️ | ✔️ | +| Create and manage environments | | ✔️ | ✔️ | +| Send invites | | | ✔️ | +| Set user roles | | | ✔️ | +| Manage billing | | | ✔️ | +| Change Organization settings | | | ✔️ |", + "indexSegmentId": "0", + "slug": "docs/v5/admin/access-roles#rbacs-summary", + "title": "RBACs summary", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + ], + "description": "Learn about Single Sign-On (SSO) and authentication options for Humanloop + +SSO and Authentication for Humanloop + +{/* WIP - for gartner /start */} + +Humanloop offers authentication options to ensure secure access to your organization's resources. This guide covers our Single Sign-On (SSO) capabilities and other authentication methods.", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication", + "title": "SSO and Authentication", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + ], + "description": "Single Sign-On allows users to access multiple applications with a single set of credentials. Humanloop supports SSO integration with major identity providers, enhancing security and simplifying user management.", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#single-sign-on-sso", + "title": "Single Sign-On (SSO)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/v5/admin/sso-and-authentication#single-sign-on-sso", + "title": "Single Sign-On (SSO)", + }, + ], + "description": "- Google Workspace +- Okta +- Azure Active Directory +- OneLogin +- Custom SAML 2.0 providers", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#supported-sso-providers", + "title": "Supported SSO Providers", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/v5/admin/sso-and-authentication#single-sign-on-sso", + "title": "Single Sign-On (SSO)", + }, + ], + "description": "1. Enhanced security with centralized authentication +2. Simplified user management +3. Improved user experience with reduced password fatigue +4. Streamlined onboarding and offboarding processes", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#benefits-of-sso", + "title": "Benefits of SSO", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/v5/admin/sso-and-authentication#single-sign-on-sso", + "title": "Single Sign-On (SSO)", + }, + ], + "description": "To set up SSO for your organization: + +1. Contact our sales team to enable SSO for your account +2. Choose your identity provider +3. Configure the connection between Humanloop and your identity provider +4. Test the SSO integration +5. Roll out to your users", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#setting-up-sso", + "title": "Setting up SSO", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + ], + "description": "For accounts not using SSO, we strongly recommend enabling Multi-Factor Authentication for an additional layer of security.", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#multi-factor-authentication-mfa", + "title": "Multi-Factor Authentication (MFA)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/v5/admin/sso-and-authentication#multi-factor-authentication-mfa", + "title": "Multi-Factor Authentication (MFA)", + }, + ], + "description": "- Time-based One-Time Password (TOTP) apps +- SMS-based verification +- Hardware security keys (e.g., YubiKey)", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#mfa-options", + "title": "MFA Options", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + ], + "description": "For programmatic access to Humanloop, we use API keys. These should be kept secure and rotated regularly.", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#api-authentication", + "title": "API Authentication", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/v5/admin/sso-and-authentication#api-authentication", + "title": "API Authentication", + }, + ], + "description": "- Generate API keys in your account settings +- Use environment variables to store API keys in your applications +- Implement key rotation policies for enhanced security", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#managing-api-keys", + "title": "Managing API Keys", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + ], + "description": "Humanloop supports automated user lifecycle management through our Directory Sync feature. This allows for: + +- Automatic user creation based on directory group membership +- Real-time updates to user attributes and permissions +- Immediate deprovisioning when users are removed from directory groups", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#user-provisioning-and-deprovisioning", + "title": "User Provisioning and Deprovisioning", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + ], + "description": "1. Use SSO when possible for centralized access control +2. Enable MFA for all user accounts +3. Regularly audit user access and permissions +4. Implement the principle of least privilege +5. Use secure protocols (HTTPS) for all communications with Humanloop + +For more information on setting up SSO or other authentication methods, please contact our support team or refer to our API documentation.", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#best-practices", + "title": "Best Practices", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + ], + "description": "Humanloop supports Active Directory Sync for automated user provisioning and deprovisioning. This feature allows you to: + +- Automatically create and update user accounts based on your Active Directory groups +- Sync user attributes and roles in real-time +- Instantly deprovision access when users are removed from AD groups +- Maintain consistent access control across your organization +- Reduce manual user management tasks and potential security risks + +To set up Active Directory Sync: + +1. Contact our sales team to enable this feature for your account +2. Configure the connection between Humanloop and your Active Directory +3. Map your AD groups to Humanloop roles and permissions +4. Test the sync process with a small group of users +5. Roll out to your entire organization + +For more information on implementing Active Directory Sync, please contact our [support team](mailto:support@humanloop.com). + +{/* WIP - for gartner /end */}", + "indexSegmentId": "0", + "slug": "docs/v5/admin/sso-and-authentication#active-directory-sync", + "title": "Active Directory Sync", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/admin/guides/invite-collaborators", + "title": "How-To Guides", + }, + ], + "description": "Inviting people to your organization allows them to interact with your Humanloop projects. + +How to invite collaborators to your Humanloop organization. + +Inviting people to your organization allows them to interact with your Humanloop projects: + +- Teammates will be able to create new model configs and experiments +- Developers will be able to get an API key to interact with projects through the SDK +- Annotators may provide feedback on logged datapoints using the Data tab (in addition to feedback captured from your end-users via the SDK feedback integration)", + "indexSegmentId": "0", + "slug": "docs/v5/admin/guides/invite-collaborators", + "title": "Invite collaborators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/admin/guides/invite-collaborators", + "title": "How-To Guides", + }, + ], + "description": "To invite users to your organization: + + + +### Go to your organization's **[Members page](https://app.humanloop.com/account/members)** + +### Enter the **email address** + +Enter the email of the person you wish to invite into the **Invite members** box. + + + +### Click **Send invite**. + +An email will be sent to the entered email address, inviting them to the organization. If the entered email address is not already a Humanloop user, they will be prompted to create an account before being added to the organization. + + + +🎉 Once they create an account, they can view your projects at the same URL to begin collaborating.", + "indexSegmentId": "0", + "slug": "docs/v5/admin/guides/invite-collaborators#invite-users", + "title": "Invite Users", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/admin/guides/invite-collaborators", + "title": "How-To Guides", + }, + ], + "description": "How to create, share and manage you Humanloop API keys. The API keys allow you to access the Humanloop API programmatically in your app. + +API keys allow you to access the Humanloop API programmatically in your app.", + "indexSegmentId": "0", + "slug": "docs/v5/admin/guides/manage-api-keys", + "title": "Manage API keys", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/admin/guides/invite-collaborators", + "title": "How-To Guides", + }, + ], + "description": " + +### Go to your Organization's **[API Keys page](https://app.humanloop.com/account/api-keys)**. + +### Click the **Create new API key** button. + +### Enter a name for your API key. + +Choose a name that helps you identify the key's purpose. You can't change the name of an API key after it's created. + +### Click **Create**. + + + +### Copy the generated API key + +Save it in a secure location. You will not be shown the full API key again. + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/admin/guides/manage-api-keys#create-a-new-api-key", + "title": "Create a new API key", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/admin/guides/invite-collaborators", + "title": "How-To Guides", + }, + ], + "description": "You can revoke an existing API key if it is no longer needed. + + + When an API key is revoked, future API requests that use this key will be + rejected. Any systems that are dependent on this key will no longer work. + + + + ### Go to API keys page + +Go to your Organization's **[API Keys +page](https://app.humanloop.com/account/api-keys)**. + +### Identify the API key + +Find the key you wish to revoke by its name or by the displayed trailing characters. + +### Click 'Revoke' + +Click the three dots button on the right of its row to open its menu. +Click **Revoke**. +A confirmation dialog will be displayed. Click **Remove**. + + +", + "indexSegmentId": "0", + "slug": "docs/v5/admin/guides/manage-api-keys#revoke-an-api-key", + "title": "Revoke an API key", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/admin/guides/invite-collaborators", + "title": "How-To Guides", + }, + ], + "description": "How to create and manage environments for your organization. + +Environments enable you to deploy different versions of your files, enabling multiple workflows.", + "indexSegmentId": "0", + "slug": "docs/v5/admin/guides/manage-environments", + "title": "Manage Environments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/admin/guides/invite-collaborators", + "title": "How-To Guides", + }, + ], + "description": " + Only Enterprise customers can create more than one environment. + + + + +### Go to your Organization's **[Environments page](https://app.humanloop.com/account/environments)**. + +### Click the **+ Environment** button. + +### Enter a name for your environment. + +Choose a name that is relevant to the development workflow you intend to support, such as \`staging\` or \`development\`. + +### Click **Create**. + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/admin/guides/manage-environments#create-a-new-environment", + "title": "Create a new environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/admin/access-roles", + "title": "Organization Management", + }, + { + "slug": "docs/admin/guides/invite-collaborators", + "title": "How-To Guides", + }, + ], + "description": "You can rename an environment to re-arrange your development workflows. Since each new file is automatically deployed to the default environment, which is production unless altered, it may make more sense to create a separate production environment and rename your current environments. + + + Renaming the environments will take immediate effect, so ensure that this + change is planned and does not disrupt your production workflows. + + + + ### Go to environments page + +Go to your Organization's **[environments +page](https://app.humanloop.com/account/environments)**. + +### Identify the environments + +Find the environments you wish to rename. + +### Click 'Rename' + +Click the three dots button on the right of its row to open its menu. +Click **Rename**. +A confirmation dialog will be displayed. Update the name and click **Rename**. + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/admin/guides/manage-environments#rename-an-environment", + "title": "Rename an environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Humanloop is SOC-2 compliant, offers within your VPC and never trains on your data. Learn more about our hosting options. + +Humanloop provides a range of hosting options and guarantees to meet enterprise needs. + +Humanloop offers a broad range of hosting environments to meet the security and compliance needs of enterprise customers. + +Our menu of hosting options is as follows from basic to more advanced: + +1. **Default**: Our multi-tenanted cloud offering is SOC2 compliant and hosted in AWS US-east region on AWS. +2. **Region specific**: Same as 1, but where additional region requirements for data storage are required - e.g. data can never leave the EU for GDPR reasons. We offer UK, EU and US guarantees for data storage regions. +3. **Dedicated**: We provision your own dedicated instance of Humanloop in your region of choice. With the additional added benefits: + - Full [HIPAA compliant](https://aws.amazon.com/compliance/hipaa-compliance/) AWS setup. + - Ability to manage your own encryption keys in KMS. + - Ability to subscribe to application logging and cloudtrail infrastructure monitoring. +4. **Self-hosted**: You deploy an instance of Humanloop within your own VPC on AWS. We provide an infra as code setup with [Pulumi](https://www.pulumi.com/) to easily spin up a Humanloop instance in your VPC.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/deployment-options", + "title": "Deployment Options", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Humanloop supports all the major large language model providers, including OpenAI, Anthropic, Google, Azure, and more. Additionally, you can use your own custom models with with the API and still benefit from the Humanloop platform. + +Humanloop supports all the major large language model providers, including OpenAI, Anthropic, Google, Azure, and more. Additionally, you can use your own custom models with with the API and still benefit from the Humanloop platform.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/supported-models", + "title": "Supported Models", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Here is a summary of which providers we support and whether + +| Provider | Models | Cost information | Token information | +| ----------- | ---------------- | ---------------- | ----------------- | +| OpenAI | ✅ | ✅ | ✅ | +| Anthropic | ✅ | ✅ | ✅ | +| Google | ✅ | ✅ | ✅ | +| Azure | ✅ | ✅ | ✅ | +| Cohere | ✅ | ✅ | ✅ | +| Llama | ✅ | | | +| Groq | ✅ | | | +| AWS Bedrock | Anthropic, Llama | | | +| Custom | ✅ | User-defined | User-defined | + +Adding in more providers is driven by customer demand. If you have a specific provider or model you would like to see supported, please reach out to us at [support@humanloop.com](mailto:support@humanloop.com).", + "indexSegmentId": "0", + "slug": "docs/v5/reference/supported-models#providers", + "title": "Providers", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "| Provider | Key | Max Prompt Tokens | Max Output Tokens | Cost per Prompt Token | Cost per Output Token | Tool Support | Image Support | +| ------------ | ------------------------- | ----------------- | ----------------- | --------------------- | --------------------- | ------------ | ------------- | +| OpenAI | gpt-4 | 8192 | 4096 | $0.00003 | $0.00006 | ✅ | ❌ | +| OpenAI | gpt-4o | 128000 | 4096 | $0.000005 | $0.000015 | ✅ | ✅ | +| OpenAI | gpt-4-turbo | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ✅ | +| OpenAI | gpt-4-turbo-2024-04-09 | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| OpenAI | gpt-4-0 | 8192 | 4096 | $0.00003 | $0.00003 | ✅ | ❌ | +| OpenAI | gpt-4-32k | 32768 | 4096 | $0.00003 | $0.00003 | ✅ | ❌ | +| OpenAI | gpt-4-1106-preview | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| OpenAI | gpt-4-0125-preview | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| OpenAI | gpt-4-vision | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ✅ | +| OpenAI | gpt-4-1106-vision-preview | 16385 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| OpenAI | gpt-3.5-turbo | 16385 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| OpenAI | gpt-3.5-turbo-instruct | 8192 | 4097 | $0.0000015 | $0.000002 | ✅ | ❌ | +| OpenAI | baggage-002 | 16384 | 16384 | $0.0000004 | $0.0000004 | ✅ | ❌ | +| OpenAI | davinci-002 | 16384 | 16384 | $0.000002 | $0.000002 | ✅ | ❌ | +| OpenAI | ft:gpt-3.5-turbo | 4097 | 4096 | $0.000003 | $0.000006 | ✅ | ❌ | +| OpenAI | ft:davinci-002 | 16384 | 16384 | $0.000002 | $0.000002 | ✅ | ❌ | +| OpenAI | text-moderation | 32768 | 32768 | $0.000003 | $0.000004 | ✅ | ❌ | +| Anthropic | claude-3-opus-20240229 | 200000 | 4096 | $0.000015 | $0.000075 | ✅ | ❌ | +| Anthropic | claude-3-sonnet-20240229 | 200000 | 4096 | $0.000003 | $0.000015 | ✅ | ❌ | +| Anthropic | claude-3-haiku-20240307 | 200000 | 4096 | $0.00000025 | $0.00000125 | ✅ | ❌ | +| Anthropic | claude-2.1 | 100000 | 4096 | $0.00000025 | $0.000024 | ❌ | ❌ | +| Anthropic | claude-2 | 100000 | 4096 | $0.000008 | $0.000024 | ❌ | ❌ | +| Anthropic | claude-instant-1.2 | 100000 | 4096 | $0.000008 | $0.000024 | ❌ | ❌ | +| Anthropic | claude-instant-1 | 100000 | 4096 | $0.0000008 | $0.0000024 | ❌ | ❌ | +| Groq | mixtral-8x7b-32768 | 32768 | 32768 | $0.0 | $0.0 | ❌ | ❌ | +| Groq | llama3-8b-8192 | 8192 | 8192 | $0.0 | $0.0 | ❌ | ❌ | +| Groq | llama3-70b-8192 | 8192 | 8192 | $0.0 | $0.0 | ❌ | ❌ | +| Groq | llama2-70b-4096 | 4096 | 4096 | $0.0 | $0.0 | ❌ | ❌ | +| Groq | gemma-7b-it | 8192 | 8192 | $0.0 | $0.0 | ❌ | ❌ | +| Replicate | llama-3-70b-instruct | 8192 | 8192 | $0.00000065 | $0.00000275 | ❌ | ❌ | +| Replicate | llama-3-70b | 8192 | 8192 | $0.00000065 | $0.00000275 | ❌ | ❌ | +| Replicate | llama-3-8b-instruct | 8192 | 8192 | $0.00000005 | $0.00000025 | ❌ | ❌ | +| Replicate | llama-3-8b | 8192 | 8192 | $0.00000005 | $0.00000025 | ❌ | ❌ | +| Replicate | llama-2-70b | 4096 | 4096 | $0.00003 | $0.00006 | ❌ | ❌ | +| Replicate | llama70b-v2 | 4096 | 4096 | N/A | N/A | ❌ | ❌ | +| Replicate | mixtral-8x7b | 4096 | 4096 | N/A | N/A | ❌ | ❌ | +| OpenAI_Azure | gpt-4o | 128000 | 4096 | $0.000005 | $0.000015 | ✅ | ✅ | +| OpenAI_Azure | gpt-4o-2024-05-13 | 128000 | 4096 | $0.000005 | $0.000015 | ✅ | ✅ | +| OpenAI_Azure | gpt-4-turbo-2024-04-09 | 128000 | 4096 | $0.00003 | $0.00006 | ✅ | ✅ | +| OpenAI_Azure | gpt-4 | 8192 | 4096 | $0.00003 | $0.00006 | ✅ | ❌ | +| OpenAI_Azure | gpt-4-0314 | 8192 | 4096 | $0.00003 | $0.00006 | ✅ | ❌ | +| OpenAI_Azure | gpt-4-32k | 32768 | 4096 | $0.00006 | $0.00012 | ✅ | ❌ | +| OpenAI_Azure | gpt-4-0125 | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| OpenAI_Azure | gpt-4-1106 | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| OpenAI_Azure | gpt-4-0613 | 8192 | 4096 | $0.00003 | $0.00006 | ✅ | ❌ | +| OpenAI_Azure | gpt-4-turbo | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| OpenAI_Azure | gpt-4-turbo-vision | 128000 | 4096 | $0.000003 | $0.000004 | ✅ | ✅ | +| OpenAI_Azure | gpt-4-vision | 128000 | 4096 | $0.000003 | $0.000004 | ✅ | ✅ | +| OpenAI_Azure | gpt-35-turbo-1106 | 16384 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| OpenAI_Azure | gpt-35-turbo-0125 | 16384 | 4096 | $0.0000005 | $0.0000015 | ✅ | ❌ | +| OpenAI_Azure | gpt-35-turbo-16k | 16384 | 4096 | $0.000003 | $0.000004 | ✅ | ❌ | +| OpenAI_Azure | gpt-35-turbo | 4097 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| OpenAI_Azure | gpt-3.5-turbo-instruct | 4097 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| OpenAI_Azure | gpt-35-turbo-instruct | 4097 | 4097 | $0.0000015 | $0.000002 | ✅ | ❌ | +| Cohere | command-r | 128000 | 4000 | $0.0000005 | $0.0000015 | ❌ | ❌ | +| Cohere | command-light | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| Cohere | command-r-plus | 128000 | 4000 | $0.000003 | $0.000015 | ❌ | ❌ | +| Cohere | command-nightly | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| Cohere | command | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| Cohere | command-medium-beta | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| Cohere | command-xlarge-beta | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| Google | gemini-pro-vision | 16384 | 2048 | $0.00000025 | $0.0000005 | ❌ | ✅ | +| Google | gemini-1.0-pro-vision | 16384 | 2048 | $0.00000025 | $0.0000005 | ❌ | ✅ | +| Google | gemini-pro | 32760 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ | +| Google | gemini-1.0-pro | 32760 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ | +| Google | gemini-1.5-pro-latest | 1000000 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ | +| Google | gemini-1.5-pro | 1000000 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ | +| Google | gemini-experimental | 1000000 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ |", + "indexSegmentId": "0", + "slug": "docs/v5/reference/supported-models#models", + "title": "Models", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "The \`.prompt\` file format is a human-readable and version-control-friendly format for storing model configurations. + +Our file format for serialising prompts to store alongside your source code. + +Our \`.prompt\` file format is a serialized version of a model config that is designed to be human-readable and suitable for checking into your version control systems alongside your code.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/prompt-file-format", + "title": "Prompt File Format", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "The .prompt file is heavily inspired by [MDX](https://mdxjs.com/), with model and hyperparameters specified in a YAML header alongside a JSX-inspired format for your Chat Template.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/prompt-file-format#format", + "title": "Format", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/prompt-file-format#format", + "title": "Format", + }, + ], + "description": " +\`\`\`jsx Chat +--- +model: gpt-4 +temperature: 1.0 +max_tokens: -1 +provider: openai +endpoint: chat +--- + + You are a friendly assistant. + +\`\`\` +\`\`\`jsx Completion +--- +model: claude-2 +temperature: 0.7 +max_tokens: 256 +top_p: 1.0 +provider: anthropic +endpoint: complete +--- +Autocomplete the sentence. + +Context: {{context}} + +{{sentence}} + +\`\`\`\` +", + "indexSegmentId": "0", + "slug": "docs/v5/reference/prompt-file-format#basic-examples", + "title": "Basic examples", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/prompt-file-format#format", + "title": "Format", + }, + ], + "description": "Images can be specified using nested \`\` tags within a \`\` message. To specify text alongside the image, use a \`\` tag. + +\`\`\`jsx Image and Text +--- +model: gpt-4-vision-preview +temperature: 0.7 +max_tokens: 256 +provider: openai +endpoint: chat +tools: [] +--- + + You are a friendly assistant. + + + + + What is in this image? + + + +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/reference/prompt-file-format#multi-modality-and-images", + "title": "Multi-modality and Images", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/prompt-file-format#format", + "title": "Format", + }, + ], + "description": "Specify the tools available to the model as a JSON list in the YAML header. + +Tool calls in assistant messages can be added with nested \`\` tags. A \`\` tag within an \`\` tag denotes a tool call of \`type: "function"\`, and requires the attributes \`name\` and \`id\`. The text wrapped in a \`\` tag should be a JSON-formatted string containing the tool call's arguments. + +Tool call responses can then be added with \`\` tags after the \`\` message. + +\`\`\`jsx +--- +model: gpt-4 +temperature: 0.7 +max_tokens: 256 +top_p: 1.0 +presence_penalty: 0.0 +frequency_penalty: 0.0 +provider: openai +endpoint: chat +tools: [ + { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": [ + "celsius", + "fahrenheit" + ] + } + }, + "required": [ + "location" + ] + } + } +] +--- + + You are a friendly assistant. + + + + What is the weather in SF? + + + + + { + "location": "San Francisco, CA" + } + + + + + + Cloudy with a chance of meatballs. + +\`\`\` +\`\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/reference/prompt-file-format#tools-tool-calls-and-tool-responses", + "title": "Tools, tool calls and tool responses", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Example projects demonstrating usage of Humanloop for prompt management, observability, and evaluation. + +A growing collection of example projects demonstrating usage of Humanloop. + +Visit our [Github examples repo](https://github.com/humanloop/examples) for a collection of usage examples of Humanloop.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/example-projects", + "title": "Example Projects", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "| Github | Description | SDK | Chat | Logging | Tool Calling | Streaming | +| :--------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------- | :--------- | :--- | :------ | :---------------- | :-------- | +| [chatbot-starter](https://github.com/humanloop/chatbot-starter/) | An open-source AI chatbot app template built with Next.js, the Vercel AI SDK, OpenAI, and Humanloop. | TypeScript | ✔️ | ✔️ | | ✔️ | +| [asap](https://github.com/humanloop/asap) | CLI assistant for solving dev issues in your projects or the command line. | TypeScript | ✔️ | ✔️ | ✔️ | |", + "indexSegmentId": "0", + "slug": "docs/v5/reference/example-projects#contents", + "title": "Contents", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "This reference provides details about the Python environment and supported packages. + +Humanloop provides a secure Python runtime to support defining code based Evaluator and Tool implementations. + +Humanloop allows you to specify the runtime for your code [Evaluators](../concepts/evaluators) and [Tool](../concepts/tools) implementations in order +to run them natively with your Prompts in our Editor and UI based Evaluation workflows.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/python-environment", + "title": "Humanloop Runtime Environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Python version: **3.11.4** + +\`\`\` +anthropic==0.29.0 +continuous-eval==0.3.13 +jellyfish==1.1.0 +jsonschema==4.22.0 +langdetect==1.0.9 +nltk==3.8.1 +numpy==1.26.4 +openai==1.35.10 +pandas==2.2.2 +pydantic==2.8.2 +requests==2.32.3 +scikit-learn==1.5.1 +spacy==3.7.5 +sqlglot==25.5.1 +syllapy==0.7.2 +textstat==0.7.3 +transformers==4.43.4 +\`\`\` + +If you have any specific packages you would like to see here, please let us know at support@humanloop.com.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/python-environment#environment-details", + "title": "Environment details", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Explore Humanloop's native, API, and third-party integrations to seamlessly connect with other tools and services, improving efficiency and expanding functionality. + +Humanloop offers a variety of integrations to enhance your workflow and extend the platform's capabilities. + +{/* WIP - for gartner /start */} + +Humanloop offers a variety of integrations to enhance your workflow and extend the platform's capabilities. These integrations allow you to seamlessly connect Humanloop with other tools and services, improving efficiency and expanding functionality.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/integrations", + "title": "Integrations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "These integrations are built directly into Humanloop and offer seamless, out-of-the-box connectivity: + +- **Git**: Integrate your Git repositories (GitHub, GitLab, Bitbucket) with Humanloop for syncronized version control and collaboration. +- **Pinecone Search**: Perform vector similarity searches using Pinecone vector DB and OpenAI embeddings. +- [**Postman**](https://www.postman.com/humanloop/humanloop/overview): Simplify API testing and development with Postman integration. +- [**Zapier**](https://zapier.com/apps/humanloop/integrations): Automate workflows by connecting Humanloop with thousands of apps. +- **WorkOS**: Streamline enterprise features like Single Sign-On (SSO) and directory sync.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/integrations#native-integrations", + "title": "Native Integrations:", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Expand Humanloop's capabilities with these API-based integrations: + +- Google Search - Access Google search results via the SerpAPI. +- GET API - Send GET requests to external APIs directly from Humanloop.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/integrations#api-integrations", + "title": "API Integrations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Leverage Humanloop's API to create custom integrations with other platforms and services. Explore the following resources to get started: + +- [API Reference Guide](../api-reference): Comprehensive documentation of Humanloop's API endpoints. +- [SDK Overview](../api-reference/sdks): Information on available SDKs for easier integration. +- [Tool Usage](../concepts/tools#tool-use-function-calling): Learn how to extend Humanloop's functionality with custom tools.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/integrations#third-party-integrations", + "title": "Third-Party Integrations:", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "- Streamline workflows by connecting Humanloop with your existing tools +- Extend Humanloop's capabilities with additional data sources and services +- Automate tasks and reduce manual work +- Customize Humanloop to fit your specific use case and requirements + +For assistance with integrations or to request a new integration, please contact our support team at [support@humanloop.com](mailto:support@humanloop.com) + +{/* WIP - for gartner /end */}", + "indexSegmentId": "0", + "slug": "docs/v5/reference/integrations#benefits-of-integrations", + "title": "Benefits of Integrations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Learn about Humanloop's commitment to security, data protection, and compliance with industry standards. + +An overview of Humanloop's security and compliance measures + +Humanloop is deeply committed to AI governance, security, and compliance. View our [Trust Report](https://trust.humanloop.com/) and [Policy Pages](https://humanloop.com/policies/privacy-policy) to see all of our certifications, request documentation, and view high-level details on the controls we adhere to. + +Humanloop never trains on user data.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance", + "title": "Security and Compliance", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "- **Data Privacy and Security** + - Activate LLMs with your private data, safely and securely. You own your data and models. +- **Monitoring & Support** + - End-to-end monitoring of your AI applications, support guarantees from trusted AI experts. +- Data Encryption +- Data Management & AI Governance", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#humanloop-security-offerings", + "title": "Humanloop Security Offerings:", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/security-and-compliance#user-authentication-and-access-control", + "title": "User Authentication and Access Control", + }, + ], + "description": "All users of the Humanloop web application require a valid email address and password to use the system: + +- Email addresses are verified on account creation. +- Passwords are verified as sufficiently complex. +- Passwords are stored using a one-way salted hash. +- User access logs are maintained including date, time, user ID, relevant URL, operation performed, and source IP address for audit purposes.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#authentication--access-control---humanloop-web-app", + "title": "Authentication & Access Control - Humanloop Web App", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/security-and-compliance#user-authentication-and-access-control", + "title": "User Authentication and Access Control", + }, + ], + "description": "All users of the API are required to authenticate with a unique API token header: + +- Follows the OAuth 2.0 pattern. +- API tokens are only visible once on creation and then obfuscated. +- Users can manage the expiry of API keys. +- API token access logs are maintained including date, time, user ID, relevant URL, operation performed, and source IP address for audit purposes.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#authentication--access-control---humanloop-api", + "title": "Authentication & Access Control - Humanloop API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/security-and-compliance#user-authentication-and-access-control", + "title": "User Authentication and Access Control", + }, + ], + "description": "- Role-based access control (RBAC) - We implement strict role-based access control (RBAC) for all our systems. +- Multi-factor authentication (MFA) - MFA is enforced for all employee accounts.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#additional-resources", + "title": "Additional Resources", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/security-and-compliance#encryption-standards", + "title": "Encryption Standards", + }, + ], + "description": "Humanloop follows best practices for data management and encryption. All data in transit is secured with TLS/SSL, and all data at rest is encrypted using the AES-256 algorithm. All encryption keys are managed using AWS Key Management Service (KMS) as part of the VPC definition. + +- All data in transit is encrypted using TLS 1.2 or higher. +- Data at rest is encrypted using AES-256 encryption.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#encryption", + "title": "Encryption", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/security-and-compliance#encryption-standards", + "title": "Encryption Standards", + }, + ], + "description": "All sensitive data is encrypted in transit. For Self-Hosted Cloud (VPC) environments, network traffic is also encrypted in transit and at rest to meet HIPAA requirements. Sensitive application data is only ever processed within the ECS cluster and stored in Aurora. To request a network infrastructure diagram or more information, please contact [privacy@humanloop.com](mailto:privacy@humanloop.com). + +**Learn More** + +For more information about how Humanloop processes user data, visit our Data Management & Hosting Options page.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#infrastructure", + "title": "Infrastructure", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/security-and-compliance#security-certifications", + "title": "Security Certifications", + }, + ], + "description": "Humanloop is fully SOC2 Type II compliant. Learn more via our [Trust Center](https://trust.humanloop.com/) and our [Security Policy](https://humanloop.com/policies/security-policy) page.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#soc2-type-ii-compliance", + "title": "SOC2 Type II Compliance", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/security-and-compliance#security-certifications", + "title": "Security Certifications", + }, + ], + "description": "Humanloop actively works with paying customers to help them achieve HIPAA compliance. Official certification is pending. + +To request references or more information, contact sales@humanloop.com. + +**HIPAA Compliance via Hosting Environment:** + +Humanloop offers dedicated platform instances on AWS with HIPAA provisions for enterprise customers that have particularly sensitive data. These provisions include: + +- The ability for enterprises to manage their own encryption keys. +- A specific AWS Fargate deployment that follows HIPAA practices.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#hipaa-compliance", + "title": "HIPAA Compliance", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/security-and-compliance#security-certifications", + "title": "Security Certifications", + }, + ], + "description": "We are fully compliant with the General Data Protection Regulation (GDPR). This includes: + +- Data minimization practices +- User rights management +- Data processing agreements", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#gdpr-compliance", + "title": "GDPR Compliance", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "- Self-Hosted Cloud (VPC) environments +- Data Processing Agreements (DPAs) +- Data Minimization and Retention Policies +- Role-Based Access Controls +- Data Encryption +- Robust Security Measures +- Incident Response Plan SLAs +- Regular Training & Audits", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#how-humanloop-helps-customers-maintain-compliance", + "title": "How Humanloop helps customers maintain compliance:", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/security-and-compliance#how-humanloop-helps-customers-maintain-compliance", + "title": "How Humanloop helps customers maintain compliance:", + }, + ], + "description": "- Cloud Hosting Options +- Data Management Protocols +- [Security Policy](https://humanloop.com/policies/security-policy) +- [Privacy Policy](https://humanloop.com/policies/privacy-policy) +- [Trust Center](https://trust.humanloop.com/) + +To request references or more information, contact sales@humanloop.com", + "indexSegmentId": "0", + "slug": "docs/v5/reference/security-and-compliance#learn-more", + "title": "Learn more:", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Discover Humanloop's robust data management practices and state-of-the-art encryption methods ensuring maximum security and compliance for AI applications. + +An overview of the data management practices and encryption methodologies used by Humanloop", + "indexSegmentId": "0", + "slug": "docs/v5/reference/data-management", + "title": "Data Management", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Separate environments are provisioned and maintained for development, quality assurance/user acceptance testing, and production to ensure data segregation at the environment level.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/data-management#data-handling-and-segregation", + "title": "Data Handling and Segregation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "All platform data received from the user and data derived from user data is classified as sensitive. All platform audit and telemetry data that does not contain PII and reference to specific user data is classified as not sensitive. + +By default, only authenticated users can see their own sensitive data. Data classified as not sensitive can be accessed by dedicated Humanloop support staff using a secure VPN connection to the private network of the VPC for the target environment. This access is for debugging issues and improving system performance. The Terms of Service define further details around data ownership and access on a case-by-case basis.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/data-management#data-classification--access-control", + "title": "Data Classification & Access Control", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + { + "slug": "docs/v5/reference/data-management#data-encryption-and-security", + "title": "Data Encryption and Security", + }, + ], + "description": "Humanloop follows best practices for data management and encryption. All data in transit is secured with TLS/SSL, and all data at rest is encrypted using the AES-256 algorithm. All encryption keys are managed using AWS Key Management Service (KMS) as part of the VPC definition.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/data-management#encryption", + "title": "Encryption", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "All sensitive data is encrypted in transit. For Self-Hosted Cloud (VPC) environments, network traffic is also encrypted in transit and at rest to meet HIPAA requirements. Sensitive application data is only processed within the ECS cluster and stored in Aurora. To request a network infrastructure diagram or more information, please contact [privacy@humanloop.com](mailto:privacy@humanloop.com).", + "indexSegmentId": "0", + "slug": "docs/v5/reference/data-management#infrastructure", + "title": "Infrastructure", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "For more information on how Humanloop processes user data, visit our [Security & Compliance](https://trust.humanloop.com) page.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/data-management#learn-more", + "title": "Learn More", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "All platform data is stored in a primary database server with multi-availability zone replication. Platform data is retained indefinitely and backed up daily in a secure and encrypted manner until a request is made by the contractual owners of that data to remove it, in accordance with GDPR guidelines. + +Humanloop's Terms of Service define the contractual owner of the user data and data derived from the user data. A semi-automated disaster recovery process is in place to restore the database to a specified point-in-time backup as required.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/data-management#data-storage-retention-and-recovery", + "title": "Data Storage, Retention, and Recovery", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Any data breaches will be communicated to all impacted Humanloop users and partners within 24 hours, along with consequences and mitigations. Breaches will be dealt with in accordance with the Humanloop data breach response policy, which is tested annually.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/data-management#data-breach-response", + "title": "Data Breach Response", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/reference/deployment-options", + "title": "Reference", + }, + ], + "description": "Within 30 days post-contract termination, users can request the return of their data and derived data (as defined by the Terms of Service). Humanloop provides this data via downloadable files in comma-separated value (.csv) or .json formats.", + "indexSegmentId": "0", + "slug": "docs/v5/reference/data-management#data-portability-and-return", + "title": "Data Portability and Return", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [], + "description": "The Humanloop API allows you to interact with Humanloop and model providers programmatically. + +You can do this through HTTP requests from any language or via our official Python or TypeScript SDK. + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + + + + +Guides and further details about key concepts can be found in [our docs](/docs/getting-started/overview).", + "indexSegmentId": "0", + "slug": "docs/v5/api-reference", + "title": "Humanloop API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference/sdks", + "title": "Introduction", + }, + ], + "description": "Learn how to integrate Humanloop into your applications using our Python and TypeScript SDKs or REST API. + +The Humanloop platform can be accessed through the API or through our Python and TypeScript SDKs. + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/api-reference/sdks", + "title": "SDKs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference/sdks", + "title": "Introduction", + }, + ], + "description": " + + + +\`\`\`shell title="Installation" +npm install humanloop@0.8.0-beta12 +\`\`\` + +\`\`\`typescript title="Example usage" +import { HumanloopClient, Humanloop } from "humanloop"; + +const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + +// Check that the authentication was successful +console.log(await humanloop.prompts.list()); +\`\`\` + + + + + +\`\`\`shell title="Installation" +pip install humanloop==0.8.0b17 +\`\`\` + +\`\`\`python title="Example usage" +from humanloop import Humanloop +hl = Humanloop(api_key="") + +# Check that the authentication was successful +print(hl.prompts.list()) +\`\`\` + + +", + "indexSegmentId": "0", + "slug": "docs/v5/api-reference/sdks#usage-examples", + "title": "Usage Examples", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference/sdks", + "title": "Introduction", + }, + ], + "description": "This page provides a list of the error codes and messages you may encounter when using the Humanloop API. + +In the event an issue occurs with our system, or with one of the model providers we integrate with, our API will raise a predictable and interpretable error.", + "indexSegmentId": "0", + "slug": "docs/v5/api-reference/errors", + "title": "Errors", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference/sdks", + "title": "Introduction", + }, + ], + "description": "Our API will return one of the following HTTP error codes in the event of an issue: + + + + +Your request was improperly formatted or presented. + + + +Your API key is incorrect or missing, or your user does not have the rights to access the relevant resource. + + + +The requested resource could not be located. + + + +Modifying the resource would leave it in an illegal state. + + + +Your request was properly formatted but contained invalid instructions or did not match the fields required by the endpoint. + + + +You've exceeded the maximum allowed number of requests in a given time period. + + + +An unexpected issue occurred on the server. + + + +The service is temporarily overloaded and you should try again. + + +", + "indexSegmentId": "0", + "slug": "docs/v5/api-reference/errors#http-error-codes", + "title": "HTTP error codes", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference/sdks", + "title": "Introduction", + }, + ], + "description": "Our \`prompt/call\` endpoint acts as a unified interface across all popular model providers. The error returned by this endpoint may be raised by the model provider's system. Details of the error are returned in the \`detail\` object of the response. + +\`\`\`json +{ + "type": "unprocessable_entity_error", + "message": "This model's maximum context length is 4097 tokens. However, you requested 10000012 tokens (12 in the messages, 10000000 in the completion). Please reduce the length of the messages or completion.", + "code": 422, + "origin": "OpenAI" +} +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/api-reference/errors#error-details", + "title": "Error details", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/17", + "title": "September 17, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": "You can now name your Evaluations in the UI and via the API. This is helpful for more easily identifying the purpose of your different Evaluations, especially when multiple teams are running different experiments. + +![Evaluation with a name](file:7440baf8-874f-4fab-a337-335226b9b22d) + +In the API, pass in the \`name\` field when creating your Evaluation to set the name. Note that names must be unique for all Evaluations for a specific file. In the UI, navigate to your Evaluation and you will see an option to rename it in the header.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/17#evaluation-names", + "title": "Evaluation Names", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/15", + "title": "September 15, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": "We've added a new key building block to our app with the first release of Flows. This release focuses on improving the code-first workflows for evaluating more complex AI applications like RAG and Agent-based apps. + +Flows allow you to version your whole AI application on Humanloop (as opposed to just individual Prompts and Tools) and allows you to log and evaluate the full trace of the important processing steps that occur when running your app. + +See our [cookbook tutorial](https://github.com/humanloop/humanloop-cookbook/blob/main/tutorials/rag/evaluate-rag-flow.ipynb) for examples on how to use Flows in your code. + + +![Image of a Flow with logs](file:6c836381-036b-456b-941f-ae95219dc64d)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/15#introducing-flows", + "title": "Introducing Flows", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + { + "slug": "docs/v5/changelog/2024/9/15#introducing-flows", + "title": "Introducing Flows", + }, + ], + "description": "We'll soon be extending support for allowing Evaluators to access all Logs inside a trace. +Additionally, we will build on this by adding UI-first visualisations and management of your Flows. + +We'll sunset Sessions in favour of Flows in the near future. Reach out to us for guidance on how to migrate your Session-based workflows to Flows.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/15#whats-next", + "title": "What's next", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/13", + "title": "September 13, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": "We've introduced a Bedrock integration on Humanloop, allowing you to use Anthropic's models via the Bedrock API, leveraging your AWS-managed infrastructure. + +![AWS Bedrock Claude models in model selection dropdown in a Prompt Editor on Humanloop](file:a2407bfb-9056-49a2-9191-50f0db2c34b6) + +To set this up, head to the API Keys tab in your Organization settings [here](https://app.humanloop.com/account/api-keys). Enter your AWS credentials and configuration. + +![Bedrock keys dialog in Humanloop app](file:bf081486-80f7-4241-8693-059fdeda754d) + +Once you've set up your Bedrock keys, you can select the Anthropic models in the model selection dropdown in the Prompt Editor and start using them in your Prompts.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/13#bedrock-support-for-anthropic-models", + "title": "Bedrock support for Anthropic models", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/10", + "title": "September 10, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": "We added same day support for OpenAI's new models, the o1 series. Unlike their predecessors, the o1 models have been designed to spend more time thinking before they respond. +In practise this means that when you call the API, time and tokens are spent doing chain-of-thought reasoning before you receive a response back. + +![o1 in the Humanloop Editor](file:6c098bb5-3d17-4c21-8cc8-18ae5f5e8db5) + +Read more about this new class of models in OpenAI's [release note](https://openai.com/index/introducing-openai-o1-preview/) and their [documentation](https://platform.openai.com/docs/guides/reasoning). + +These models are still in Beta and don't yet support streaming or tool use, the temperature has to be set to 1 and there are specific rate limits in place.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/10#openai-o1", + "title": "OpenAI o1", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/5", + "title": "September 5, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": "We've expanded our [evals API](https://humanloop.com/docs/v5/api-reference/evaluations/get-stats) to include new fields that allow you to more easily check on progress and render summaries of your Evals directly in your deployment logs. + +The stats response now contains a \`status\` you can poll and \`progess\` and \`report\` fields that you can print: + +\`\`\` +⏳ Evaluation Progress +Total Logs: 40/40 +Total Judgments: 120/120 + + + +📊 Evaluation Results for evals_demo/answer-flow ++------------------------+---------------------------+---------------------------+ +| Version id | flv_xo7ZxnkkvcFcDJ9pwSrA9 | flv_foxO18ZHEgxQmwYJO4bR1 | ++------------------------+---------------------------+---------------------------+ +| Created | 2024-09-01 14:50:28 | 2024-09-02 14:53:24 | ++------------------------+---------------------------+---------------------------+ +| Evaluators | | | ++------------------------+---------------------------+---------------------------+ +| evals_demo/exact_match | 0.8 | 0.65 | +| evals_demo/levenshtein | 7.5 | 33.5 | +| evals_demo/reasoning | 0.3 | 0.05 | ++------------------------+---------------------------+---------------------------+ + + +Navigate to Evaluation: https://app.humanloop.com/evaluations/evr_vXjRgufGzwuX37UY83Lr8 +❌ Latest score [0.05] below the threshold [0.5] for evaluator evals_demo/reasoning. +❌ Regression of [-0.25] for evaluator evals_demo/reasoning + +\`\`\` + + +See how you can leverage Evals as part of your CICD pipeline to test for regressions in your AI apps in our reference [example](https://github.com/humanloop/humanloop-cookbook/blob/main/tutorials/rag/evaluate_rag_cicd.py).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/9/5#evals-cicd-improvements", + "title": "Evals CICD Improvements", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/30", + "title": "August 30, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We've introduced a new Files API in our v5 API resources that lets you query all files simultaneously. This is useful when managing your workflows on Humanloop and you wish to find all files that match specific criteria, such as having a deployment in a specific environment. Some of the supported filters to search with are file name, file type, and deployed environments. If you find there are additional access patterns you'd find useful, please reach out and let us know.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/30#get-all-deployed-versions-via-api", + "title": "Get All Deployed Versions via API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/29", + "title": "August 29, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We've introduced the ability to patch Logs for Prompts and Tools. This can come in useful in scenarios where certain characteristics of your Log are delayed that you may want to add later, such as the output, or if you have a process of redacting inputs that takes time. + +Note that not all fields support being patched, so start by referring to our [V5 API References](api-reference/prompts). From there, you can submit updates to your previously created logs.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/29#update-logs-api", + "title": "Update Logs API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/28", + "title": "August 28, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We've extended our search interface to include file paths, allowing you to more easily find and navigate to related files that you've grouped under a directory. + +![Search dialog showing file paths](file:7e1c0a1e-dea7-4e73-8880-47e7d8d96d74) + +Bring up this search dialog by clicking "Search" near the top of the left-hand sidebar, or by pressing \`Cmd+K\`.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/28#search-files-by-path", + "title": "Search files by path", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/24", + "title": "August 24, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "Humanloop supports the three newly released Gemini 1.5 models. + +Start using these improved models by specifying one of the following model names in your Prompts: + +- \`gemini-1.5-pro-exp-0827\` The improved Gemini 1.5 Pro model +- \`gemini-1.5-flash-exp-0827\` The improved Gemini 1.5 Flash model +- \`gemini-1.5-flash-8b-exp-0827\` The smaller Gemini 1.5 Flash variant + +More details on these models can be viewed [here](https://ai.google.dev/gemini-api/docs/models/experimental-models#available-models).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/24#updated-gemini-15-models", + "title": "Updated Gemini 1.5 models", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/20", + "title": "August 20, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "You can now include custom attributes to determine the unique version of your file definitions on Humanloop. + +This allows you to make the version depend on data custom to your application that Humanloop may not be aware of. + +For example, if there are feature flags or identifiers that indicate a different configuration of your system that may impact the behaviour of your Prompt or Tool. + +\`attributes\` can be submitted via the v5 API endpoints. When added, the attributes are visible on the Version Drawer and in the Editor. + +![Metadata on versions](file:2d08a4a4-22fc-41e7-ad6e-7eb02313bf21)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/20#custom-attributes-for-files", + "title": "Custom attributes for Files", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/16", + "title": "August 16, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We've expanded the information shown in the version popover so that it is easier to identify which version you are working with. + +This is particularly useful in places like the Logs table and within Evaluation reports, where you may be working with multiple versions of a Prompt, Tool, or Evaluator and need to preview the contents. + +![Improved version popover](file:797507e6-2827-4ccb-9f02-4123f9fe1b86)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/16#improved-popover-ui", + "title": "Improved popover UI", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/15", + "title": "August 15, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "You can now evaluate versions without committing them first. This means you can draft a version of a Prompt in the editor and simultaneously evaluate it in the evaluations tab, speeding up your iteration cycle. + +This is a global change that allows you to load and use uncommitted versions. Uncommitted versions are created automatically when a new version of a Prompt, Tool, or Evaluator is run in their respective editors or called via the API. These versions will now appear in the version pickers underneath all your committed versions. + +To evaluate an uncommitted version, simply select it by using the hash (known as the "version id") when setting up your evaluation. + +![Uncommitted versions in the version picker](file:bccddb71-a5a3-4222-91be-d4e063a71dad)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/15#evaluate-uncommitted-versions", + "title": "Evaluate uncommitted versions", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/14", + "title": "August 14, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We've made significant upgrades to Human Evaluators and related workflows to improve your ability to gather Human judgments (sometimes referred to as "feedback") in assessing the quality of your AI applications. + +Here are some of the key improvements: + +- Instead of having to define a limited feedback schema tied to the settings of a specific Prompt, you can now **define your schema with a Human Evaluator file and reuse it across multiple Prompts and Tools** for both monitoring and offline evaluation purposes. +- You are no longer restricted to the default types of \`Rating\`, \`Actions\` and \`Issues\` when defining your feedback schemas from the UI. We've introduced a **more flexible Editor interface supporting different return types** and valence controls. +- We've extended the scope of Human Evaluators so that they can now **also be used with Tools and other Evaluators** (useful for validating AI judgments) in the same way as with Prompts. +- We've **improved the Logs drawer UI for applying feedback** to Logs. In particular, we've made the buttons more responsive. + +To set up a Human Evaluator, create a new file. Within the file creation dialog, click on **Evaluator**, then click on **Human**. +This will create a new Human Evaluator file and bring you to its Editor. Here, you can choose a \`Return type\` for the Evaluator and configure the feedback schema. + +![Tone evaluator set up with options and instructions](file:9c477a6f-8107-4320-8cd9-ff101f262b7a) + +You can then reference this Human Evaluator within the \`Monitoring\` dropdown of Prompts, Tools, and other Evaluators, as well as when configuring reports in their \`Evaluations\` tab. + +We've set up default \`Rating\` and \`Correction\` Evaluators that will be automatically attached to all Prompts new and existing. We've migrated all your existing Prompt specific feedback schemas to Human Evaluator files and these will continue to work as before with no disruption. + +Check out our updated document for further details on how to use Human Evaluators: + +- [Create a Human Evaluator](/docs/evaluation/guides/human-evaluator) +- [Capture End User Feedback](/docs/observability/guides/capture-user-feedback) +- [Run a Human Evaluation](/docs/evaluation/guides/run-human-evaluation)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/14#human-evaluator-upgrades", + "title": "Human Evaluator upgrades", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/13", + "title": "August 13, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We've made improvements to help you evaluate the components of your AI applications, quickly see issues and explore the full context of each evaluation.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/13#evaluations-improvements", + "title": "Evaluations improvements", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + { + "slug": "docs/v5/changelog/2024/8/13#evaluations-improvements", + "title": "Evaluations improvements", + }, + ], + "description": "We've given the Log drawer's Evaluation tab a facelift. You can now clearly see what the results are for each of the connected Evaluators. + +This means that it's now easier to debug the judgments applied to a Log, and if necessary, re-run code/AI Evaluators in-line. + +![Log drawer's Evaluation tab with the "Run again" menu open](file:96373200-4779-425c-a95f-ee79c26fe5d6)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/13#a-clearer-evaluation-tab-in-logs", + "title": "A clearer Evaluation tab in Logs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + { + "slug": "docs/v5/changelog/2024/8/13#evaluations-improvements", + "title": "Evaluations improvements", + }, + ], + "description": "We have introduced the ability to re-run your Evaluators against a specific Log. This feature allows you to more easily address and fix issues with previous Evaluator judgments for specific Logs. + +You can request a re-run of that Evaluator by opening the menu next to that Evaluator and pressing the "Run Again" option.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/13#ability-to-re-run-evaluators", + "title": "Ability to re-run Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + { + "slug": "docs/v5/changelog/2024/8/13#evaluations-improvements", + "title": "Evaluations improvements", + }, + ], + "description": "If you hover over an evaluation result, you'll now see a popover with more details about the evaluation including any intermediate results or console logs without context switching. + +![Evaluation popover](file:46f3ec14-9cc8-479e-bd9f-bdd3a44ee812)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/13#evaluation-popover", + "title": "Evaluation popover", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + { + "slug": "docs/v5/changelog/2024/8/13#evaluations-improvements", + "title": "Evaluations improvements", + }, + ], + "description": "The Logs table for Evaluators now supports the functionality as you would expect from our other Logs tables. This will make it easier to filter and sort your Evaluator judgments.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/13#updated-evaluator-logs-table", + "title": "Updated Evaluator Logs table", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/7", + "title": "August 7, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We have expanded the packages available in the Evaluator Python environment. The new packages we've added are: \`continuous-eval\`, \`jellyfish\`, \`langdetect\`, \`nltk\`, \`scikit-learn\`, \`spacy\`, \`transformers\`. The full list of packages can been seen in our [Python environment reference](/docs/reference/python-environment). + +We are actively improving our execution environment so if you have additional packages you'd like us to support, please do not hesitate to get in touch.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/7#more-code-evaluator-packages", + "title": "More Code Evaluator packages", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/5", + "title": "August 5, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "OpenAI have introduced [Structured Outputs](https://openai.com/index/introducing-structured-outputs-in-the-api/) functionality to their API. + +This feature allows the model to more reliably adhere to user defined JSON schemas for use cases like information extraction, data validation, and more. + +We've extended our \`/chat\` (in v4) and \`prompt/call\` (in v5) endpoints to support this feature. There are two ways to trigger Structured Outputs in the API: + +1. **Tool Calling:** When defining a tool as part of your Prompt definition, you can now include a \`strict=true\` flag. The model will then output JSON data that adheres to the tool \`parameters\` schema definition. + +\`\`\`python +""" Example using our v5 API. """ +from humanloop import Humanloop + +client = Humanloop( + api_key="YOUR_API_KEY", +) + +client.prompts.call( + path="person-extractor", + prompt={ + "model": "gpt-4o", + "template": [ + { + "role": "system", + "content": "You are an information extractor.", + }, + ], + "tools": [ + { + "name": "extract_person_object", + "description": "Extracts a person object from a user message.", + # New parameter to enable structured outputs + "strict": True, + "parameters": { + "type": "object", + "properties": { + "name": { + "type": "string", + "name": "Full name", + "description": "Full name of the person", + }, + "address": { + "type": "string", + "name": "Full address", + "description": "Full address of the person", + }, + "job": { + "type": "string", + "name": "Job", + "description": "The job of the person", + } + }, + # These fields need to be defined in strict mode + "required": ["name", "address", "job"], + "additionalProperties": False, + }, + } + ], + }, + messages=[ + { + "role": "user", + "content": "Hey! I'm Jacob Martial, I live on 123c Victoria street, Toronto and I'm a software engineer at Humanloop.", + }, + ], + stream=False, +) + +\`\`\` + +2. **Response Format:** We have expanded the \`response_format\` with option \`json_schema\` and a request parameter to also include an optional \`json_schema\` field where you can pass in the schema you wish the model to adhere to. + +\`\`\`python + +client.prompts.call( + path="person-extractor", + prompt={ + "model": "gpt-4o", + "template": [ + { + "role": "system", + "content": "You are an information extractor.", + }, + ], + # New parameter to enable structured outputs + "response_format": { + "type": "json_schema", + "json_schema": { + "name": "person_object", + "strict": True, + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "name": "Full name", + "description": "Full name of the person" + }, + "address": { + "type": "string", + "name": "Full address", + "description": "Full address of the person" + }, + "job": { + "type": "string", + "name": "Job", + "description": "The job of the person" + } + }, + "required": ["name", "address", "job"], + "additionalProperties": False + } + } + } + }, + messages=[ + { + "role": "user", + "content": "Hey! I'm Jacob Martial, I live on 123c Victoria street, Toronto and I'm a software engineer at Humanloop.", + }, + ], + stream=False, +) +\`\`\` +This new response formant functionality is only supported by the latest OpenAPI model snapshots \`gpt-4o-2024-08-06\` and \`gpt-4o-mini-2024-07-18\`. + +We will also be exposing this functionality in our Editor UI soon too!", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/5#openai-structured-outputs", + "title": "OpenAI Structured Outputs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/1", + "title": "August 1, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We've added the ability to view the Standard Output (Stdout) for your Code Evaluators. + +You can now use \`print(...)\` statements within your code to output intermediate results to aid with debugging. + +The Stdout is available within the Debug console as you iterate on your Code Evaluator: + +![DebugConsole](file:4789435b-e95a-4443-b88c-b5d75939e174) + +Additionally, it is stored against the Evaluator Log for future reference: + +![EvaluatorLog](file:a14f9158-e6ff-46e2-85f3-b9fb57d7f94a)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/8/1#improved-code-evaluator-debugging", + "title": "Improved Code Evaluator Debugging", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/30", + "title": "July 30, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "Our Evaluations feature allows you to benchmark Versions of a same File. We've made the form for creating new Evaluations simpler by allowing the selection of multiple in the picker dialog. Columns will be filled or inserted as needed. + +As an added bonus, we've made adding and removing columns feel smoother with animations. The form will also scroll to newly-added columns. + +![](file:e48a60ba-9b9b-4fe1-baee-f19ef063a760)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/30#select-multiple-versions-when-creating-an-evaluation", + "title": "Select multiple Versions when creating an Evaluation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/19", + "title": "July 19, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "You should notice that queries against your logs should load faster and the tables should render more quickly. + +We're still making more enhancements so keep an eye for more speed-ups coming soon!", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/19#faster-log-queries", + "title": "Faster log queries", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/18", + "title": "July 18, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "Latest model from OpenAI, GPT-4o-mini, has been added. It's a smaller version of the GPT-4o model which shows GPT-4 level performance with a model that is 60% cheaper than gpt-3.5-turbo. + +- Cost: 15 cents per million input tokens, 60 cents per million output tokens +- Performance: MMLU score of 82%", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/18#gpt-4o-mini-support", + "title": "gpt-4o-mini support", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/10", + "title": "July 10, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "We've introduced several enhancements to our code Evaluator runtime environment to support additional packages, environment variables, and improved runtime output.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/10#enhanced-code-evaluators", + "title": "Enhanced code Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2024/7/10#enhanced-code-evaluators", + "title": "Enhanced code Evaluators", + }, + ], + "description": "Our Code Evaluator now logs both \`stdout\` and \`stderr\` when executed and environment variables can now be accessed via the \`os.environ\` dictionary, allowing you to retrieve values such as \`os.environ['HUMANLOOP_API_KEY']\` or \`os.environ['PROVIDER_KEYS']\`.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/10#runtime-environment", + "title": "Runtime environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2024/7/10#enhanced-code-evaluators", + "title": "Enhanced code Evaluators", + }, + ], + "description": "Previously, the selection of Python packages we could support was limited. We are now able to accommodate customer-requested packages. If you have specific package requirements for your eval workflows, please let us know!", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/7/10#python-packages", + "title": "Python packages", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/30", + "title": "June 30, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "Gemini 1.5 Flash is Googles most efficient model to date with a long context window and great latency. + +While it’s smaller than 1.5 Pro, it’s highly capable of multimodal reasoning with a 1 million token length context window. + +Find out more about Flash's [availability and pricing](https://blog.google/technology/developers/gemini-gemma-developer-updates-may-2024/)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/30#gemini-15-flash-support", + "title": "Gemini 1.5 Flash support", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/24", + "title": "June 24, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "We've made some improvements to the user experience around committing and deploying changes to your evaluators, tools and datasets. + +Now, each editor has a consistent and reliable loading and saving experience. You can choose prior versions in the dropdown, making it easier to toggle between versions. + +And, as you commit, you'll also get the option to immediately deploy your changes. This reduces the number of steps needed to get your changes live. + +Additional bug fixes: + +- Fixed the flickering issue on the datasets editor +- Fixed the issue where the evaluator editor would lose the state of the debug drawer on commit.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/24#committing-and-deploying-ux-improvements", + "title": "Committing and deploying UX improvements", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/20", + "title": "June 20, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "Claude 3.5 Sonnet is now in Humanloop! + +Sonnet is the latest and most powerful model from Anthropic. + +**2x the speed, 1/5th the cost, yet smarter than Claude 3 Opus.** + +Anthropic have now enabled streaming of tool calls too, which is supported in Humanloop now too. + +Add your Anthropic key and select Sonnet in the Editor to give it a go. + +![Sonnet](file:eab7a6c8-2481-4fc1-969c-a4e8ec833fd7)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/20#claude-35-sonnet-support", + "title": "Claude 3.5 Sonnet support", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/18", + "title": "June 18, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "You can now click on the Prompt and Tool version tags within your Evaluation report to open a drawer with details. This helps provide the additional context needed when reasoning with the results without having to navigate awa + +![Prompt drawer in Evaluation report](file:5a239128-f8f7-4084-ad50-f302ec6bc5b9)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/18#prompt-and-tool-version-drawer-in-evaluation-reports", + "title": "Prompt and Tool version drawer in Evaluation reports", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/16", + "title": "June 16, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "With Humanloop Evaluation Reports, you can leverage multiple Evaluators for comparing your Prompt and Tool variations. Evaluators can be of different types: code, AI or Human and the progress of the report is dependent on collecting all the required judgements. Human judgments generally take longer than the rest and are collected async by members of your team. + +![Human Evaluators](file:73f7479d-3fc8-4597-b3c2-2723cf8c8e1b) + +To better support this workflow, we've improved the UX around monitoring the status of judgments, with a new progress bar. Your Human Evaluators can now also update the status of the report when they're done. + +![Human Evaluators](file:58f1dfca-7812-45a3-a385-51665ec1e5e7) + +We've also added the ability to cancel ongoing Evaluations that are pending or running. Humanloop will then stop generating Logs and running Evaluators for this Evaluation report.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/16#status-of-human-evaluators", + "title": "Status of Human Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/10", + "title": "June 10, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "Following the recent upgrades around Evaluation reports, we've improved the batching and concurrency for both calling models and getting the evaluation results. This has increased the speed of Evaluation report generation by 10x and the reports now update as new batches of logs and evaluations are completed to give a sense of intermediary progress.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/10#faster-evaluations", + "title": "Faster Evaluations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/4", + "title": "June 4, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "We've released Evaluation reports, which allows you to easily compare the performance of your different Prompts or Tools across multiple different [Evaluator](/docs/evaluators) criteria. + +This generalises our previous concept of Evaluation runs, extending it with multiple complimentary changes with getting more from your evals. All your existing Evaluation runs have been migrated to Evaluation reports with a single evaluated Prompt or Tool. You can easily extend these existing runs to cover additional Evaluators and Prompts/Tools with out having to regenerate existing logs. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/4#evaluation-comparison-reports", + "title": "Evaluation Comparison Reports", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2024/6/4#evaluation-comparison-reports", + "title": "Evaluation Comparison Reports", + }, + ], + "description": "We've introduced a new **stats comparison view**, including a radar chart that gives you a quick overview of how your versions compare across all Evaluators. Below it, your evaluated versions are shown in columns, forming a grid with a row per Evaluator you've selected. + +The performance of each version for a given Evaluator is shown in a chart, where bar charts are used for boolean results, while box plots are used for numerical results providing an indication of variance within your Dataset. + +Evaluation reports also introduce an **automatic deduplication** feature, which utilizes previous logs to avoid generating new logs for the same inputs. If a log already exists for a given evaluated-version-and-datapoint pair, it will automatically be reused. You can also override this behavior and force the generation of new logs for a report by creating a **New Batch** in the setup panel. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/4#feature-breakdown", + "title": "Feature breakdown", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2024/6/4#evaluation-comparison-reports", + "title": "Evaluation Comparison Reports", + }, + ], + "description": "To get started, head over to the Evaluations tab of the Prompt you'd like to evaluate, and click **Evaluate** in the top right. + +This will bring you to a page where you can set up your Evaluation, choosing a Dataset, some versions to Evaluate and compare, and the Evaluators you'd like to use. + +![](file:fc069caf-4584-43a9-abc9-60742b492f0a) + +When you click **Save**, the Evaluation report will be created, and any missing Logs will be generated.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/4#how-to-use-evaluation-reports", + "title": "How to use Evaluation reports", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2024/6/4#evaluation-comparison-reports", + "title": "Evaluation Comparison Reports", + }, + ], + "description": "We're planning on improving the functionality of Evaluation reports by adding a more comprehensive detailed view, allowing you to get a more in-depth look at the generations produced by your Prompt versions. Together with this, we'll also be improving Human evaluators so you can better annotate and aggregate feedback on your generations.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/6/4#whats-next", + "title": "What's next", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/28", + "title": "May 28, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": "You can now access the latest versions of GPT-4 and GPT-4o hosted on Azure in the Humanloop Editor and via our Chat endpoints. + +Once you've configured your Azure key and endpoint in your organization's provider settings, the model versions will show up in the Editor dropown as follows: + +For more detail, please see the [API documentation](https://docs.humanloop.com/reference/logs_list) on our Logs endpoints. + +![](file:50554232-640e-43f6-a877-512275a13351)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/28#azure-model-updates", + "title": "Azure Model Updates", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/20", + "title": "May 20, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": "We've improved the ability to filter logs by time ranges. The API logs filter parameters for \`start_date\` and \`end_date\` now supports querying with more granularity. Previously the filters were limited to dates, such as **2024-05-22**, now you can use hourly ranges as well, such as **2024-05-22 13:45**. + +For more detail, please see the [API documentation](https://docs.humanloop.com/reference/logs_list) on our Logs endpoints.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/20#improved-logs-filtering", + "title": "Improved Logs Filtering", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/15", + "title": "May 15, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": "You can now connect deployed Evaluator versions for online monitoring of your Prompts and Tools. + +This enables you to update Evaluators for multiple Prompt or Tools when you deploy a new Evaluator version. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/15#monitoring-with-deployed-evaluators", + "title": "Monitoring with deployed Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/13", + "title": "May 13, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": "Same day support for OpenAIs new GPT4-Omni model! You can now use this within the Humanloop Editor and chat APIs. + +Find out more from OpenAI [here](https://openai.com/index/hello-gpt-4o/). + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/13#gpt-4o", + "title": "GPT-4o", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/12", + "title": "May 12, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": "For AI and Code Evaluators, you can now inspect and reference their logs as with Prompts and Tools. This provides greater transparency into how they are being used and improves the ability to debug and improve. + +Further improvements to Human Evaluators are coming very soon... + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/12#logs-for-evaluators", + "title": "Logs for Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/8", + "title": "May 8, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": "Evaluators are now first class citizens alongside Prompts, Tools and Datasets. This allows for easier re-use, version control and helps with organising your workspace within directories. + +You can create a new Evaluator by choosing **Evaluator** in the File creation dialog in the sidebar or on your home page. + +Creating a new Evaluator file", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/8#improved-evaluator-management", + "title": "Improved Evaluator management", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + { + "slug": "docs/v5/changelog/2024/5/8#improved-evaluator-management", + "title": "Improved Evaluator management", + }, + ], + "description": "We've migrated all of your Evaluators previously managed within **Prompts > Evaluations > Evaluators** to new Evaluator files. All your existing Evaluation runs will remain unchanged and online Evaluators will continue to work as before. Moving forward you should use the new Evaluator file to make edits and manage versions.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/5/8#migration-and-backwards-compatibility", + "title": "Migration and backwards compatibility", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/30", + "title": "April 30, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": "You can now open up the Log drawer directly in the Editor. + +This enables you to see exactly what was sent to the provider as well as the tokens used and cost. You can also conveniently add feedback and run evaluators on that specific Log, or add it to a dataset. + +To show the Logs just click the arrow icon beside each generated message or completion. + + + + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/30#log-drawer-in-editor", + "title": "Log drawer in Editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/26", + "title": "April 26, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": "We have introduced support for models available on Groq to Humanloop. You can now try out the blazingly fast generations made with the open-source models (such as Llama 3 and Mixtral 8x7B) hosted on Groq within our Prompt Editor. + + + + +Groq achieves [faster throughput](https://artificialanalysis.ai/models/llama-3-instruct-70b/providers) using specialized hardware, their LPU Inference Engine. More information is available in their [FAQ](https://wow.groq.com/why-groq/) and on their website. + +
+ +Note that their API service, GroqCloud, is still in beta and low rate limits are enforced.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/26#groq-support-beta", + "title": "Groq support (Beta)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/23", + "title": "April 23, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": "[Llama 3](https://llama.meta.com/llama3/), Meta AI's latest openly-accessible model, can now be used in the Humanloop Prompt Editor. + +Llama 3 comes in two variants: an 8-billion parameter model that performs similarly to their previous 70-billion parameter Llama 2 model, and a new 70-billion parameter model. Both of these variants have an expanded context window of 8192 tokens. + +More details and benchmarks against other models can be found on their [blog post](https://ai.meta.com/blog/meta-llama-3/) and [model card](https://github.com/meta-llama/llama3/blob/main/MODEL_CARD.md). + +Humanloop supports Llama 3 on the Replicate model provider, and on the newly-introduced Groq model provider. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/23#llama-3", + "title": "Llama 3", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/18", + "title": "April 18, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": "Our Editor and deployed endpoints now supports tool use with the Anthropic's Claude3 models. Tool calling with Anthropic is still in Beta, so streaming is not important. + +In order to user tool calling for Claude in Editor you therefore need to first turn off streaming mode in the menu dropdown to the right of the load button. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/18#anthropic-tool-support-beta", + "title": "Anthropic tool support (Beta)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/16", + "title": "April 16, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": "We now compute Cost, Tokens and Latency for all Prompt logs by default across all model providers. + +These values will now appear automatically as graphs in your Dashboard, as columns in your logs table and will be displayed in our Version and Log drawers. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/16#cost-tokens-and-latency", + "title": "Cost, Tokens and Latency", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/13", + "title": "April 13, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": "We've expanded the Cohere models with the latest command-r suite. You can now use these models in our Editor and via our APIs once you have set your Cohere API key. + +More details can be found on their [blog post](https://cohere.com/blog/command-r-plus-microsoft-azure). + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/13#cohere-command-r", + "title": "Cohere Command-r", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/5", + "title": "April 5, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": "In our recent release, we promoted **Datasets** from being attributes managed within the context of a single Prompt, to a **first-class Humanloop file type** alongside Prompts and Tools. + + + +This means you can curate Datasets and share them for use across any of the Prompts in your organization. It also means you get the full power of our **file versioning system**, allowing you **track and commit every change** you make Datasets and their Datapoints, with attribution and commit messages inspired by Git. + + + +It's now easy to understand which version of a Dataset was used in a given Evaluation run, and whether the most recent edits to the Dataset were included or not. + +Read more on how to get started with datasets [here](/docs/datasets). + +This change lays the foundation for lots more improvements we have coming to Evaluations in the coming weeks. Stay tuned!", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/4/5#dataset-files--versions", + "title": "Dataset Files & Versions", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/25", + "title": "March 25, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": "Keeping you up to date with the latest open models, we've added support for Mixtral 8x7B to our Editor with a [Replicate integration](https://replicate.com/). + + + + +Mixtral 8x7B outperforms LLaMA 2 70B (already supported in Editor) with faster inference, with performance comparable to that of GPT-3.5. More details are available in its [release announcement](https://mistral.ai/news/mixtral-of-experts/).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/25#mixtral-8x7b", + "title": "Mixtral 8x7B", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": "Through the Replicate model provider additional open models can be used by specifying a model name via the API. The model name should be of a similar form as the ref used when calling \`replicate.run(ref)\` using [Replicate's Python SDK](https://github.com/replicate/replicate-python). + +For example, Vicuna, an open-source chatbot model based on finetuning LLaMA can be used with the following model name alongside \`provider: "replicate"\` in your Prompt version. +\`replicate/vicuna-13b:6282abe6a492de4145d7bb601023762212f9ddbbe78278bd6771c8b3b2f2a13b\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/25#additional-replicate-models-support-via-api", + "title": "Additional Replicate models support via API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/18", + "title": "March 18, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": "We now provide the ability to access your uncommitted Prompt Versions and associated Logs. + +Adding to our recent changes around the [Commit flow for Versions](https://docs.humanloop.com/changelog/prompts-and-committing-prompt-versions), we've added the ability to view any uncommitted versions in your Versions and Logs tables. This can be useful if you need to recover or compare to a previous state during your Prompt engineering and Evaluation workflows. + +Uncommitted Versions are created when you make generations in our Editor without first committing what you are working on. In future, it will also be possible to create uncommitted versions when logging or generating using the API. + +We've added new filter tabs to the Versions and Logs table to enable this: + +New **All** and From **Committed By Versions** filter tabs on the logs table. + + +New **Committed** and **Uncommitted** tabs on the Versions table of your Prompt dashboard.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/18#surfacing-uncommitted-versions", + "title": "Surfacing uncommitted Versions", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/7", + "title": "March 7, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": "We've introduced a sidebar for easier navigation between your Prompts and Tools. + +As new language models unlock more complex use cases, you'll be setting up and connecting Prompts, Tools, and Evaluators. The new layout better reflects these emerging patterns, and switching between your files is now seamless with the directory tree in the sidebar. + +![](file:a38066ee-9657-4012-a07a-093f2d46e66d) + +You can also bring up the search dialog with **Cmd+K** and switch to another file using only your keyboard.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/7#improved-navigation--sidebar", + "title": "Improved navigation & sidebar", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/6", + "title": "March 6, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": "Introducing same day support for the Claude 3 - Anthropics new industry leading models. Read more about the release [here](https://www.anthropic.com/news/claude-3-family). + +The release contains three models in ascending order of capability: _Haiku_, _Sonnet_, and _Opus_. This suite provides users with the different options to balance intelligence, speed, and cost for their specific use-cases. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/6#claude-3", + "title": "Claude 3", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": "1. **Performance** - a new leader. The largest of the 3 models, Opus, is claimed to outperform GPT-4 and Gemini Ultra on key benchmarks such as MMLU and Hellaswag. It even reached 84.9% on the Humaneval coding test set (vs GPT-4’s 67%) 🤯 +2. **200k context window** with near-perfect recall on selected benchmarks. Opus reports 99% accuracy on the NIAH test, which measures how accurately a model can recall information given to it in a large corpus of data. +3. **Opus has vision**. Anthropic claim that performance here is on par with that of other leading models (ie GPT-4 and Gemini). They say it’s most useful for inputting graphs, slides etc. in an enterprise setting. +4. **Pricing** - as compared to OpenAI: + +Opus - $75 (2.5x GPT-4 Turbo) +Sonnet - $15 (50% of GPT-4 Turbo) +Haiku - $1.25 (1.6x GPT-3.5) + +5. **How you can use it**: The Claude 3 family is now available on Humanloop. Bring your API key to test, evaluate and deploy the publicly available models - Opus and Sonnet.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/3/6#key-take-aways", + "title": "Key take aways", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/26", + "title": "February 26, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "You can now create Tools in the same way as you create Prompts and Directories. This is helpful as it makes it easier to discover Tools and easier to quickly create new ones. + +![](file:938abbba-c26b-43d0-b511-5f58520098cc) + +To create a new Tool simply press the New button from the directory of your choice and select one of our supported Tools, such as JSON Schema tool for function calling or our Pinecone tool to integrate with your RAG pipelines.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/26#new-tool-creation-flow", + "title": "New Tool creation flow", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "You can now manage and edit your Tools in our new Tool Editor. This is found in each Tool file and lets you create and iterate on your tools. As well, we have introduced deployments to Tools, so you can better control which versions of a tool are used within your Prompts. + +![](file:e2489aa7-ca61-4555-809c-80c1f7e1803e)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/26#tool-editor-and-deployments", + "title": "Tool editor and deployments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + { + "slug": "docs/v5/changelog/2024/2/26#tool-editor-and-deployments", + "title": "Tool editor and deployments", + }, + ], + "description": "This replaces the previous Tools section which has been removed. The editor will let you edit any of the tool types that Humanloop supports (JSON Schema, Google, Pinecone, Snippet, Get API) and commit new Versions. + +![](file:1de72ff7-e6c5-4eb5-892a-977bbed692bf)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/26#tool-editor", + "title": "Tool Editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + { + "slug": "docs/v5/changelog/2024/2/26#tool-editor-and-deployments", + "title": "Tool editor and deployments", + }, + ], + "description": "Tools can now be deployed. You can pick a version of your Tool and deploy it. When deployed it can be used and referenced in a Prompt editor. + +And example of this, if you have a version of a Snippet tool with the signature \`snippet(key)\` with a key/value pair of "_helpful_"/"_You are a helpful assistant_". You decide you would rather change the value to say "_You are a funny assistant_", you can commit a version of the Tool with the updated key. This wont affect any of your prompts that reference the Snippet tool until you Deploy the second version, after which each prompt will automatically start using the funny assistant prompt.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/26#deployment", + "title": "Deployment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "We've rolled out a unified label for our Prompt Versions to allow you to quickly identify your Prompt Versions throughout our UI. As we're rolling out these labels across the app, you'll have a consistent way of interacting with and identifying your Prompt Versions. + +Label and hover card for a deployed Prompt Version + + +The labels show the deployed status and short ID of the Prompt Version. When you hover over these labels, you will see a card that displays the commit message and authorship of the committed version. + +You'll be able to find these labels in many places across the app, such as in your Prompt's deployment settings, in the Logs drawer, and in the Editor. + +The Prompt Version label and hover card in a Prompt Editor + + +As a quick tip, the color of the checkmark in the label indicates that this is a version that has been deployed. If the Prompt Version has not been deployed, the checkmark will be black. + +A Prompt Version that has not been deployed", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/26#prompt-labels-and-hover-cards", + "title": "Prompt labels and hover cards", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "Building on our terminology improvements from Project -> Prompt, we've now updated Model Configs -> Prompt Versions to improve consistency in our UI. + +This is part of a larger suite of changes to improve the workflows around how entities are managed on Humanloop and to make them easier to work with and understand. We will also be following up soon with a new and improved major version of our API that encapsulates all of our terminology improvements. + +In addition to just the terminology update, we've improved our Prompt versioning functionality to now use \`commits\` that can take \`commit messages\`, where you can describe how you've been iterating on your Prompts. + +We've removed the need for names (and our auto-generated placeholder names) in favour of using explicit commit messages. + + + + +We'll continue to improve the version control and file types support over the coming weeks. + +Let us know if you have any questions around these changes!", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/26#committing-prompt-versions", + "title": "Committing Prompt Versions", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/14", + "title": "February 14, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "You can now use your online evaluators for monitoring the logs sent to your Tools. The results of this can be seen in the graphs on the Tool dashboard as well as on the Logs tab of the Tool. + +![](file:dc38190a-d0aa-4369-bcf5-4e2b87009f50) + +To enable Online Evaluations follow the steps seen in our [Evaluate models online](/docs/guides/evaluate-models-online) guide.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/14#online-evaluators-for-monitoring-tools", + "title": "Online evaluators for monitoring Tools", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "We're now computing and storing the number of tokens used in both the requests to and responses from the model. + +This information is available in the logs table UI and as part of the [log response](/api-reference/logs/get) in the API. Furthermore you can use the token counts as inputs to your code and LLM based evaluators. + +The number of tokens used in the request is called \`prompt_tokens\` and the number of tokens used in the response is called \`output_tokens\`. + +This works consistently across all model providers and whether or not you are you are streaming the responses. OpenAI, for example, do not return token usage stats when in streaming mode. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/14#logging-token-usage", + "title": "Logging token usage", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/13", + "title": "February 13, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "You can now view who authored a Prompt Version. + +Prompt Version authorship in the Prompt Version slideover + + +We've also introduced a popover showing more Prompt Version details that shows when you mouseover a Prompt Version's ID. + +Prompt Version popover in the Logs slideover + + +Keep an eye out as we'll be introducing this in more places across the app.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/13#prompt-version-authorship", + "title": "Prompt Version authorship", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/9", + "title": "February 9, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "We've made improvements to the evaluations runs overview page to make it easier for your team to find interesting or important runs. + +![](file:8238b014-44fd-4143-896f-d925082329d2) + +The charts have been updated to show a single datapoint per run. Each chart represents a single evaluator, and shows the performance of the prompt tested in that run, so you can see at a glance how the performance your prompt versions have evolved through time, and visually spot the outliers. Datapoints are color-coded by the dataset used for the run. + +The table is now paginated and does not load your entire project's list of evaluation runs in a single page load. The page should therefore load faster for teams with a large number of runs. + +The columns in the table are now filterable and sortable, allowing you to - for example - filter just for the completed runs which test two specific prompt versions on a specific datasets, sorted by their performance under a particular evaluator. + +Here, we've filtered the table on completed runs that tested three specific prompt versions of interest, and sorted to show those with the worst performance on the Valid JSON evaluator.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/9#filterable-and-sortable-evaluations-overview", + "title": "Filterable and sortable evaluations overview", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/8", + "title": "February 8, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "We've renamed \`Projects\` to \`Prompts\` and \`Tools\` as part of our move towards managing \`Prompts\`, \`Tools\`, \`Evaluators\` and \`Datasets\` as special-cased and strictly versioned files in your Humanloop directories. + +This is a purely cosmetic change for now. Your Projects (now Prompts and Tools) will continue to behave exactly the same. This is the first step in a whole host of app layout, navigation and API improvements we have planned in the coming weeks. + +If you are curious, please reach out to learn more. + + + +**New creation flow** + +We've also updated our file creation flow UI. When you go to create projects you'll notice they are called Prompts now. + +![](file:c2bd3fb0-f5f1-4cc6-bee0-5711b2664357)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/8#projects-rename-and-file-creation-flow", + "title": "Projects rename and file creation flow", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/2", + "title": "February 2, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "We've added a \`save\` flag to all of our endpoints that generate logs on Humanloop so that you can control whether the request and response payloads that may contain sensitive information are persisted on our servers or not. + +If \`save\` is set to \`false\` then no \`inputs\`, \`messages\` our \`outputs\` of any kind (including the raw provider request and responses) are stored on our servers. This can be helpful for sensitive use cases where you can't for example risk PII leaving your system. + +Details of the model configuration and any metadata you send are still stored. Therefore you can still benefit from certain types of evaluators such as human feedback, latency and cost, as well as still track important metadata over time that may not contain sensitive information. + +This includes all our [chat](/api-reference/chats/create) and [completion](/api-reference/completions/create) endpoint variations, as well as our explicit [log](/api-reference/logs/log) endpoint. + +\`\`\`python +from humanloop import Humanloop + +# You need to initialize the Humanloop SDK with your API Keys +humanloop = Humanloop(api_key="") + +# humanloop.complete_deployed(...) will call the active model config on your project. +# You can optionally set the save flag to False +complete_response = humanloop.complete_deployed( + save=False, + project="", + inputs={"question": "I have inquiry about by life insurance policy. Can you help?"}, +) + +# You can still retrieve the data_id and output as normal +data_id = complete_response.data[0].id +output = complete_response.data[0].output + +# And log end user feedback that will still be stored +humanloop.feedback(data_id=data_id, type="rating", value="good") + + +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/2#control-logging-level", + "title": "Control logging level", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "We're now capturing the raw provider request body alongside the existing provider response for all logs generated from our [deployed endpoints](/docs/guides/chat-using-the-sdk). + +This provides more transparency into how we map our provider agnostic requests to specific providers. It can also effective for helping to troubleshoot the cases where we return well handled provider errors from our API. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/2/2#logging-provider-request", + "title": "Logging provider request", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30", + "title": "January 30, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": "You can now add an evaluator to any existing evaluation run. This is helpful in situations where you have no need to regenerate logs across a dataset, but simply want to run new evaluators across the existing run. By doing this instead of launching a fresh run, you can the save significant time & costs associated with unnecessarily regenerating logs, especially when working with large datasets. + +Use the **Add Evaluator** button to run more evaluators across the logs in an existing evaluation run. This can be done on any runs, including those still running or already completed.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#add-evaluators-to-existing-runs", + "title": "Add Evaluators to existing runs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": "We've enhanced the usability of the debug console when creating and modifying evaluators. Now you can more easily inspect the data you are working with, and understand the root causes of errors to make debugging quicker and more intuitive. + +![](file:6118f4b8-8e83-4616-879f-9c45c156766a) + +On any row in the debug console, click the arrow next to a testcase to inspect the full entity in a slideover panel. + +After clicking **Run** to generate a log from a testcase, you can inspect the full log right from the debug console, giving you clearer access to error messages or the model-generated content, as in the example below. + +![](file:0c0c1802-168e-4645-bde8-5f2a62dcba8b)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#improved-evaluation-debug-console", + "title": "Improved Evaluation Debug Console", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": "We expect this feature to be most useful in the case of creating and debugging LLM evaluators. You can now inspect the log of the LLM evaluation itself right from the debug console, along with the original testcase and model-generated log, as described above. + +After clicking **Run** on a testcase in the debug console, you'll see the **LLM Evaluation Log** column populated with a button that opens a full drawer. + +![](file:e1a43293-9ea1-4e5a-aa03-45e7f68fec98) + +This is particularly helpful to verify that your evaluation prompt was correctly populated with data from the underlying log and testcase, and to help understand why the LLM's evaluation output may not have been parsed correctly into the output values. + +![](file:fed5fba1-2196-4bd9-95e7-925b72a5a74b)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#llm-evaluators", + "title": "LLM Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": "We have upgraded projects to now also work for tools. Tool projects are automatically created for tools you define as part of your model config [in the Editor](/docs/guides/create-a-tool-in-the-editor) as well as tools [managed at organization level](/docs/guides/link-a-jsonschema-tool). + +It is now easier to access the logs from your tools and manage different versions like you currently do for your prompts. + +![](file:f90baa0d-d702-4a46-b632-46e372320c78)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#tool-projects", + "title": "Tool projects", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + { + "slug": "docs/v5/changelog/2024/1/30#tool-projects", + "title": "Tool projects", + }, + ], + "description": "In the dashboard view, you can see the different versions of your tools. This will soon be expanded to link you to the source config and provide a more comprehensive view of your tool's usage.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#tool-versioning", + "title": "Tool versioning", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + { + "slug": "docs/v5/changelog/2024/1/30#tool-projects", + "title": "Tool projects", + }, + ], + "description": "Any logs submitted via the SDK that relate to these tools will now appear in the Logs view of these projects. You can see this by following our [sessions guide](https://dash.readme.com/project/humanloop/v4.0/docs/logging-session-traces) and logging a new tool via the SDK. This also works natively with online Evaluators, so you can start to layer in observability for the individual non-LLM components of your session", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#logs", + "title": "Logs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + { + "slug": "docs/v5/changelog/2024/1/30#tool-projects", + "title": "Tool projects", + }, + ], + "description": "You can trigger evaluations on your tools projects similar to how you would for an LLM project with model configs. This can be done by logging to the tool project, creating a dataset, and triggering an evaluation run. A good place to start would be the [Set up evaluations using API](/docs/guides/evaluations-using-api) guide.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#offline-evaluations-via-sdk", + "title": "Offline Evaluations via SDK", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": "Following [OpenAI's latest model releases](https://openai.com/blog/new-embedding-models-and-api-updates), you will find support for all the latest models in our **Playground** and **Editor**.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#support-for-new-openai-models", + "title": "Support for new OpenAI Models", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + { + "slug": "docs/v5/changelog/2024/1/30#support-for-new-openai-models", + "title": "Support for new OpenAI Models", + }, + ], + "description": "If your API key has access to the models, you'll see the new release \`gpt-4-0125-preview\` and \`gpt-3.5-turbo-0125\` available when working in Playground and Editor. These models are more capable and cheaper than their predecessors - see the OpenAI release linked above for full details. + +![](file:aef6d838-1f19-4314-8ea4-ad27a8f59585) + +We also support the new \`gpt-4-turbo-preview\` model alias, which points to the latest \`gpt-4-turbo\` model without specifying a specific version.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#gpt-35-turbo-and-gpt-4-turbo", + "title": "GPT-3.5-Turbo and GPT-4-Turbo", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + { + "slug": "docs/v5/changelog/2024/1/30#support-for-new-openai-models", + "title": "Support for new OpenAI Models", + }, + ], + "description": "Finally, the new embedding models - \`text-embedding-3-small\` and \`text-embedding-3-large\` are also available for use via Humanloop. The \`small\` model is 5x cheaper than the previous generation \`ada-002\` embedding model, while the larger model significantly improves performance and maps to a much larger embedding space.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/30#embedding-models", + "title": "Embedding Models", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/19", + "title": "January 19, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": "We've made some usability enhancements to the launch experience when setting up batch generation & evaluation runs. + +It's now clearer which model configs, datasets and evaluators you've selected. It's also now possible to specify whether you want the logs to be generated in the Humanloop runtime, or if you're going to post the logs from your own infrastructure via the API. + +![](file:26511ea5-4dc5-4bdf-a083-7594715ee1e1)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/19#improved-evaluation-run-launcher", + "title": "Improved evaluation run launcher", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + { + "slug": "docs/v5/changelog/2024/1/19#improved-evaluation-run-launcher", + "title": "Improved evaluation run launcher", + }, + ], + "description": "Occasionally, you may launch an evaluation run and then realise that you didn't configure it quite the way you wanted. Perhaps you want to use a different model config or dataset, or would like to halt its progress for some other reason. + +We've now made evaluation runs cancellable from the UI - see the screenshot below. This is especially helpful if you're running evaluations over large datasets, where you don't want to unnecessarily consume provider credits. + +Cancellation button in the evaluation run page.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/19#cancellable-evaluation-runs", + "title": "Cancellable evaluation runs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/12", + "title": "January 12, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": "We've introduced batching to our offline Evaluations to significantly speed up runtime performance and also improved the robustness to things going wrong mid-run. + +In addition to our recent [enhancements to the Evaluations API](changelog:evaluation-api-enhancements), we've also made some significant improvements to our underlying orchestration framework which should mean your evaluation runs are now faster and more reliable. In particular, we now **batch generations** across the run - by default in groups of five, being conscious of potential rate limit errors (though this will soon be configurable). + +Each batch runs its generations concurrently, so you should see much faster completion times - especially in runs across larger datasets.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/12#faster-offline-evaluations", + "title": "Faster offline evaluations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/11", + "title": "January 11, 2024", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + ], + "description": "We've started the year by enhancing our evaluations API to give you more flexibility for self-hosting whichever aspects of the evaluation workflow you need to run in your own infrastructure - while leaving the rest to us!", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/11#evaluation-api-enhancements", + "title": "Evaluation API enhancements", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2024", + "title": "2024", + }, + { + "slug": "docs/changelog/1", + "title": "January 1900", + }, + { + "slug": "docs/v5/changelog/2024/1/11#evaluation-api-enhancements", + "title": "Evaluation API enhancements", + }, + ], + "description": "Conceptually, evaluation runs have two components: + +1. Generation of logs for the datapoints using the version of the model you are evaluating. +2. Evaluating those logs using Evaluators. + +Now, using the Evaluations API, Humanloop offers the ability to generate logs either within the Humanloop runtime, or self-hosted (see our [guide on external generations for evaluations](/docs/guides/evaluating-externally-generated-logs)). + +Similarly, evaluating of the logs can be performed in the Humanloop runtime (using evaluators that you can define in-app), or self-hosted (see our [guide on self-hosted evaluations](/docs/guides/self-hosted-evaluations)). + +It is now possible to mix-and-match self-hosted and Humanloop-runtime logs and evaluations in any combination you wish. + +When creating an Evaluation (via the improved UI dialogue or via the API), you can set the new \`hl_generated\` flag to \`False\` to indicate that you are posting the logs from your own infrastructure. You can then also include an evaluator of type \`External\` to indicate that you will post evaluation results from your own infrastructure. + + + +You can now also include multiple evaluators on any run, and these can include a combination of \`External\` (i.e. self-hosted) and Humanloop-runtime evaluators.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2024/1/11#mixing-and-matching-the-humanloop-runtime-with-self-hosting", + "title": "Mixing and matching the Humanloop-runtime with self-hosting", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/22", + "title": "December 22, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "We've introduced a new special type of 'Human' Evaluator to compliment our existing code and AI based Evaluators. + +There are many important evaluation use cases that require input from your internal domain experts, or product teams. Typically this is where you would like a gold standard judgement of how your LLM app is performing. + + + +Our new Human Evaluator allows you to trigger a batch evaluation run as normal (from our UI as part of your prompt engineering process, or using our SDK as part of your CI/CD pipeline) and then queues the results ready for a human to provide feedback. + +Once completed, the feedback is aggregated to give a top-line summary of how the model is performing. It can also be combined with automatic code and AI evaluators in a single run. + + + +Set up your first Human Evaluator run by following [our guide.](/docs/guides/evaluating-with-human-feedback)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/22#human-evaluators", + "title": "Human Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "We've introduced a \`return_inputs\` flag on our chat and completion endpoints to improve performance for larger payloads. + +As context model windows get increasingly larger, for example [Claude with 200k tokens](https://www.anthropic.com/index/claude-2-1), it's important to make sure our APIs remain performant. A contributor to response times is the size of the response payload being sent over the wire. + +When you set this new flag to false, our responses will no longer contain the \`inputs\` that were sent to the model and so can be significantly smaller. This is the first in a sequence of changes to add more control to the caller around API behaviour. + +As always, we welcome suggestions, requests, and feedback should you have any.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/22#return-inputs-flag", + "title": "Return inputs flag", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "You can now use Google's latest LLMs, [Gemini](https://blog.google/technology/ai/google-gemini-ai/), in Humanloop.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/22#gemini", + "title": "Gemini", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + { + "slug": "docs/v5/changelog/2023/12/22#gemini", + "title": "Gemini", + }, + ], + "description": "To use Gemini, first go to [https://makersuite.google.com/app/apikey](https://makersuite.google.com/app/apikey) and generate an API key. Then, save this under the "Google" provider on [your API keys page](http://app.humanloop.com/account/api-keys). + +Head over to the playground, and you should see \`gemini-pro\` and \`gemini-pro-vision\` in your list of models. + + + +You can also now use Gemini through the Humanloop API's \`/chat\`endpoints.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/22#setup", + "title": "Setup", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + { + "slug": "docs/v5/changelog/2023/12/22#gemini", + "title": "Gemini", + }, + ], + "description": "Gemini offers support for multi-turn chats, tool calling, and multi-modality. + +However, note that while \`gemini-pro\` supports multi-turn chats and tool calling, it does not support multi-modality. On the other hand, \`gemini-pro-vision\` supports multi-modality but not multi-turn chats or tool calling. Refer to [Gemini's docs](https://ai.google.dev/models/gemini) for more details. + +When providing images to Gemini, we've maintained compatibility with OpenAI's API. This means that when using Humanloop, you can provide images either via a HTTP URL or with a base64-encoded data URL.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/22#features", + "title": "Features", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/21", + "title": "December 21, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "Your chat messages in Editor are now recorded as part of a session so you can more easily keep track of conversations. + + + +After chatting with a saved prompt, go to the sessions tab and your messages will be grouped together. + +If you want to do this with the API, it can be as simple as setting the \`session_reference_id\`– see [docs on sessions](/docs/guides/logging-session-traces).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/21#chat-sessions-in-editor", + "title": "Chat sessions in Editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/13", + "title": "December 13, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "Logs for your deployed prompts will now be tagged with the corresponding [environment](/docs/guides/deploy-to-an-environment). + +In your logs table, you can now filter your logs based on environment: + + + +You can now also pass an \`environment\` tag when using the explicit [/log ](/api-reference/logs/log) endpoint; helpful for use cases such as [orchestrating your own models](/docs/guides/use-your-own-model-provider).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/13#environment-logs", + "title": "Environment logs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/12", + "title": "December 12, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "We've improved the experience of creating and debugging your evaluators. + +Now that you can [access any property of the objects you're testing](/api-reference/changelog#llm-evals---improved-data-access) we've cleaned up the debug panel to make easier to view the testcases that you load from a dataset or from your projects. + + + +We've also clarified what the return types are expected as you create your evaluators.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/12#improved-evaluator-ui", + "title": "Improved Evaluator UI", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "Following our recent [introduction of our .prompt file](/docs/guides/prompt-file-format), you can now compare your model configs within a project with our new 'diff' view. + +![](file:eae9c590-f45f-4fbc-957e-53603380acbf) + +As you modify and improve upon your model configs, you might want to remind yourself of the changes that were made between different versions of your model config. To do so, you can now select 2 model configs in your project dashboard and click **Compare** to bring up a side-by-side comparison between them. Alternatively, open the actions menu and click **Compare to deployed**. + + + +This diff compares the .prompt files representing the two model configs, and will highlight any differences such as in the model, hyperparameters, or prompt template.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/12#prompt-diffs", + "title": "Prompt diffs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "In order to help you write better LLM evaluator prompts, you now have finer-grained access to the objects you are evaluating. + +It's now possible to access any part of the \`log\` and \`testcase\` objects using familiar syntax like \`log.messages[0].content\`. Use the debug console to help understand what the objects look like when writing your prompts. + +![](file:4f5d8445-9687-44ac-89f1-288ac5714058)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/12#llm-evals---improved-data-access", + "title": "LLM evals - improved data access", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/5", + "title": "December 5, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "It's now possible to manage tool definitions globally for your organization and re-use them across multiple projects by linking them to your model configs. + +Prior to this change, if you wanted to re-use the same tool definition across multiple model configs, you had to copy and paste the JSON schema snippet defining the name, description and parameters into your Editor for each case. And if you wanted to make changes to this tool, you would have to recall which model configs it was saved to prior and update them inline 1 by 1. + +You can achieve this tool re-use by first defining an instance of our new \`JsonSchema\` tool available as another option in your global \`Tools\` tab. Here you can define a tool once, such as \`get_current_weather(location: string, unit: 'celsius' | 'fahrenheit')\`, and then link that to as many model configs as you need within the Editor as shown below. + +Importantly, updates to the \`get_current_weather\` \`JsonSchema\` tool defined here will then propagate automatically to all the model configs you've linked it to, without having to publish new versions of the prompt. + +The old behaviour of defining the tool inline as part of your model config definition is still available for the cases where you do want changes in the definition of the tool to lead to new versions of the model-config.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/5#tool-linking", + "title": "Tool linking", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "Navigate to the [tools tab](https://app.humanloop.com/hl-test/tools) in your organisation and select the JsonSchema tool card. + +![](file:6403419e-e962-4627-9353-1747e57d5349) + +With the dialog open, define your tool with \`name\`, \`description\`, and \`parameters\` values. Our guide for using [OpenAI Function Calling in the playground](/docs/guides/create-a-tool-in-the-editor) can be a useful reference in this case.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/5#set-up-the-tool", + "title": "Set up the tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "In the editor of your target project, link the tool by pressing the \`Add Tool\` button and selecting your \`get_current_weather\` tool. + +![](file:4ad4a9d7-8ce4-4996-b27c-b0cc496276f3)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/5#using-the-tool", + "title": "Using the tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/4", + "title": "December 4, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "We've updated how we show logs and datapoints in their respective tables. You can now see the stack of inputs and messages in a cleaner interface rather than having them spread into separate columns. + +Part of the updated Log Table. Inputs are now stacked with a more consistent and less-busy UI. + +There will be more updates soon to improve how logs and prompts are shown in tables and the drawers soon, so if you have ideas for improvements please let us know.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/4#improved-log-table-ui", + "title": "Improved log table UI", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + ], + "description": "We're introducing a .prompt file format for representing model configs in a format that's both human-readable and easy to work with. + +For certain use cases it can be helpful for engineers to also store their prompts alongside their app's source code in their favourite version control system. The .prompt file is the appropriate artefact for this. + +These .prompt files can be retrieved through both the API and through the Humanloop app.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/4#introducing-prompt-files", + "title": "Introducing .prompt files", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + { + "slug": "docs/v5/changelog/2023/12/4#introducing-prompt-files", + "title": "Introducing .prompt files", + }, + ], + "description": "To fetch a .prompt file via the API, make \`POST\` request to \`https://api.humanloop.com/v4/model-configs/{id}/export\`, where \`{id}\` is the ID of the model config (beginning with \`config_\`).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/4#exporting-via-api", + "title": "Exporting via API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + { + "slug": "docs/v5/changelog/2023/12/4#introducing-prompt-files", + "title": "Introducing .prompt files", + }, + ], + "description": "You can also export an existing model config as a .prompt file from the app. Find the model config within the project's dashboard's table of model configs and open the actions menu by clicking the three dots. Then click **Export .prompt**. (You can also find this button within the drawer that opens after clicking on on a model config's row). + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/4#export-from-humanloop", + "title": "Export from Humanloop", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/12", + "title": "December 1900", + }, + { + "slug": "docs/v5/changelog/2023/12/4#introducing-prompt-files", + "title": "Introducing .prompt files", + }, + ], + "description": "Additionally, we've added the ability to view and edit your model configs in a .prompt file format when in Editor. Press **Cmd-Shift-E** when in editor to swap over to a view of your .prompt file. + + + +More details on our .prompt file format are available [here](/docs/guides/prompt-file-format). We'll be building on this and making it more powerful. Stay tuned.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/12/4#editor", + "title": "Editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28", + "title": "November 28, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've introduced more levels to our roles based access controls (RBACs). + +We now distinguish between different roles to help you better manage your organization's access levels and permissions on Humanloop. + +This is the first in a sequence of upgrades we are making around RBACs.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28#improved-rbacs", + "title": "Improved RBACs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "Everyone invited to the organization can access all projects currently (controlling project access coming soon). + +A user can be one of the following rolws: + +**Admin:**The highest level of control. They can manage, modify, and oversee the organization's settings and have full functionality across all projects. + +**Developer:**(Enterprise tier only) Can deploy prompts, manage environments, create and add API keys, but lacks the ability to access billing or invite others. + +**Member:**(Enterprise tier only) The basic level of access. Can create and save prompts, run evaluations, but not deploy. Can not see any org-wide API keys.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28#organization-roles", + "title": "Organization roles", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "Here is the full breakdown of roles and access: + +| Action | Member | Developer | Admin | +| :----------------------------- | :----- | :-------- | :---- | +| Create and manage Prompts | ✔️ | ✔️ | ✔️ | +| Inspect logs and feedback | ✔️ | ✔️ | ✔️ | +| Create and manage evaluators | ✔️ | ✔️ | ✔️ | +| Run evaluations | ✔️ | ✔️ | ✔️ | +| Create and manage datasets | ✔️ | ✔️ | ✔️ | +| Create and manage API keys | | ✔️ | ✔️ | +| Manage prompt deployments | | ✔️ | ✔️ | +| Create and manage environments | | ✔️ | ✔️ | +| Send invites | | | ✔️ | +| Set user roles | | | ✔️ | +| Manage billing | | | ✔️ | +| Change organization settings | | | ✔️ |", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28#rbacs-summary", + "title": "RBACs summary", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've added support for managing [evaluations](/docs/guides/evaluate-your-model) outside of Humanloop in your own code. + +There are certain use cases where you may wish to run your evaluation process outside of Humanloop, where the evaluator itself is defined in your code as opposed to being defined using our Humanloop runtime. + +For example, you may have implemented an evaluator that uses your own custom model, or has to interact with multiple systems. In which case, it can be difficult to define these as a simple code or [LLM evaluator](/docs/guides/use-llms-to-evaluate-logs) within your Humanloop project. + +With this kind of setup, our users have found it very beneficial to leverage the datasets they have curated on Humanloop, as well as consolidate all of the results alongside the prompts stored on Humanloop. + +To better support this setting, we're releasing additional API endpoints and SDK utilities. We've added endpoints that allow you to: + +- Retrieve your curated datasets +- Trigger evaluation runs +- Send evaluation results for your datasets generated using your custom evaluators + +Below is a code snippet showing how you can use the latest version of the Python SDK to log an evaluation run to a Humanloop project. For a full explanation, see our [guide](/docs/guides/self-hosted-evaluations) on self-hosted evaluations. + +\`\`\`python +from humanloop import Humanloop + +API_KEY = ... +humanloop = Humanloop(api_key=API_KEY) + +# 1. Retrieve a dataset +DATASET_ID = ... +datapoints = humanloop.datasets.list_datapoints(DATASET_ID).records + +# 2. Create an external evaluator +evaluator = humanloop.evaluators.create( + name="My External Evaluator", + description="An evaluator that runs outside of Humanloop runtime.", + type="external", + arguments_type="target_required", + return_type="boolean", +) +# Or, retrieve an existing one: +# evaluator = humanloop.evaluators.get(EVALUATOR_ID) + +# 3. Retrieve a model config +CONFIG_ID = ... +model_config = humanloop.model_configs.get(CONFIG_ID) + +# 4. Create the evaluation run +PROJECT_ID = ... +evaluation_run = humanloop.evaluations.create( + project_id=PROJECT_ID, + config_id=CONFIG_ID, + evaluator_ids=[EVALUATOR_ID], + dataset_id=DATASET_ID, +) + +# 5. Iterate the datapoints and trigger generations +logs = [] +for datapoint in datapoints: + log = humanloop.chat_model_config( + project_id=PROJECT_ID, + model_config_id=model_config.id, + inputs=datapoint.inputs, + messages=[ + {key: value for key, value in dict(message).items() if value is not None} + for message in datapoint.messages + ], + source_datapoint_id=datapoint.id, + ).data[0] + logs.append((log, datapoint)) + +# 6. Evaluate the results. +# In this example, we use an extremely simple evaluation, checking for an exact +# match between the target and the model's actual output. +for (log, datapoint) in logs: + # The datapoint target tells us the correct answer. + target = str(datapoint.target["answer"]) + + # The log output is what the model said. + model_output = log.output + + # The evaluation is a boolean, indicating whether the model was correct. + result = target == model_output + + # Post the result back to Humanloop. + evaluation_result_log = humanloop.evaluations.log_result( + log_id=log.id, + evaluator_id=evaluator.id, + evaluation_run_external_id=evaluation_run.id, + result=result, + ) + +# 7. Complete the evaluation run. +humanloop.evaluations.update_status(id=evaluation_run.id, status="completed") + +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28#self-hosted-evaluations", + "title": "Self hosted evaluations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've updated the response models of all of our [/chat](/api-reference/chats/create) API endpoints to include an output message object. + +Up to this point, our \`chat\` and \`completion\` endpoints had a unified response model, where the \`content\` of the assistant message returned by OpenAI models was provided in the common \`output\` field for each returned sample. And any tool calls made were provided in the separate \`tool_calls\` field. + +When making subsequent chat calls, the caller of the API had to use these fields to create a message object to append to the history of messages. So to improve this experience we now added an \`output_message\` field to the chat response. This is additive and does not represent a breaking change. + +**Before:** + +\`\`\`json +{ + "project_id": "pr_GWx6n0lv6xUu3HNRjY8UA", + "data": [ + { + "id": "data_Vdy9ZoiFv2B7iYLIh15Jj", + "index": 0, + "output": "Well, I gotta say, ...", + "raw_output": "Well, I gotta say...", + "finish_reason": "length", + "model_config_id": "config_VZAPd51sJH7i3ZsjauG2Q", + "messages": [ + { + "content": "what's your best guess...", + "role": "user", + } + ], + "tool_calls": null + } + ], +... +... +... +} +\`\`\` + +**After:** + +\`\`\`json +{ + "project_id": "pr_GWx6n0lv6xUu3HNRjY8UA", + "data": [ + { + "id": "data_Vdy9ZoiFv2B7iYLIh15Jj", + "output_message": { + "content": "Well, I gotta say, ...", + "name": null, + "role": "assistant", + "tool_calls": null + }, + "index": 0, + "output": "Well, I gotta say, ...", + "raw_output": "Well, I gotta say...", + "finish_reason": "length", + "model_config_id": "config_VZAPd51sJH7i3ZsjauG2Q", + "messages": [ + { + "content": "what's your best guess...", + "role": "user", + } + ], + "tool_calls": null, + } + ], +... +... +... +} +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28#chat-response", + "title": "Chat response", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've added support for managing common text 'snippets' (or 'passages', or 'chunks') that you want to reuse across your different prompts. + +This functionality is provided by our new _Snippet tool_. A Snippet tool acts as a simple key/value store, where the key is the name of the common re-usable text snippet and the value is the corresponding text. + +For example, you may have some common persona descriptions that you found to be effective across a range of your LLM features. Or maybe you have some specific formatting instructions that you find yourself re-using again and again in your prompts. + +Before now, you would have to copy and paste between your editor sessions and keep track of which projects you edited. Now you can instead inject the text into your prompt using the Snippet tool.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28#snippet-tool", + "title": "Snippet tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "Navigate to the [tools tab](https://app.humanloop.com/hl-test/tools) in your organisation and select the Snippet tool card. + +![](file:77789645-25a5-474c-8eb4-32e916a73195) + +When the dialog opens, start adding your key/value pairs. In the example below we've defined an Assistants snippet tool that can be used manage some common persona descriptions we feed to the LLM. + + +You can have up to 10 key/value snippets in a single snippet tool. + + +The **name** field will be how you'll access this tool in the editor. By setting the value as _assistant_ below it means in the editor you'll be able to access this specific tool by using the syntax \`{{ assistant(key) }}\`. + +The **key** is how you'll access the snippet later, so it's recommended to choose something short and memorable. + +The **value** is the passage of text that will be included in your prompt when it is sent to the model. + +![](file:e9b7f2c2-3cca-4175-ab20-bdf54b5db8bd)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28#set-up-the-tool", + "title": "Set up the tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "Now your Snippets are set up, you can use it to populate strings in your prompt templates across your projects. Double curly bracket syntax is used to call a tool in the template. Inside the curly brackets you call the tool. + +![](file:2a58c905-2a8a-459e-9976-d64abf888653) + +The tool requires an input value to be provided for the key. In our [editor environment](https://app.humanloop.com/playground) the result of the tool will be shown populated top right above the chat. + +Above we created an Assistants tool. To use that in an editor you'd use the \`{{ (key) }}\` so in this case it would be \`{{ assistant(key) }}\`. When adding that you get an inputs field appear where you can specify your \`key\`, in the screenshot above we used the \`helpful\` key to access the \`You are a helpful assistant. You like to tell jokes and if anyone asks your name is Sam.\`string. This input field can be used to experiment with different key/value pairs to find the best one to suit your prompt. + + +If you want to see the corresponding snippet to the key you either need to first run the conversation to fetch the string and see it in the preview. + + +If you have a specific key you would like to hardcode in the prompt, you can define it using the literal key value: \`{{ ("key") }}\`, so in this case it would be \`{{ assistant("helpful") }}\`. + +![](file:40e29736-c096-4c1e-a664-1c49d645b9dc) + +This is particularly useful because you can define passages of text once in a snippet tool and reuse them across multiple prompts, without needing to copy/paste them and manually keep them all in sync.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28#use-the-tool", + "title": "Use the tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "Explore our other tools such as the Google or Pinecone Search. If you have other ideas for helpful integrations please reach out and let us know.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/28#whats-next", + "title": "What's next", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/22", + "title": "November 22, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've been shipping some quality-of-life "little big things" to improve your every day usage of the platform.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/22#quality-of-life-app-improvements", + "title": "Quality-of-life app improvements", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/22#quality-of-life-app-improvements", + "title": "Quality-of-life app improvements", + }, + ], + "description": "We've added the project switcher throughout the app so its easier to jump between Projects from anywhere + +The project switcher is now available everywhere.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/22#project-switcher-throughout-the-app", + "title": "Project switcher throughout the app", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/22#quality-of-life-app-improvements", + "title": "Quality-of-life app improvements", + }, + ], + "description": "With all the new capabilities and changes (tools, images and more) we need to keep a tight ship to stop things from becoming too busy. + +We're unifying how we show all your logged generations, in the editor, and in the logs and sessions. We've also changed the font to Inter to be legible at small font sizes. + +The Editor and other places have had a clean up to aid the new capabilites of tool calling and vision.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/22#weve-tidied-up-the-editor", + "title": "We've tidied up the Editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/22#quality-of-life-app-improvements", + "title": "Quality-of-life app improvements", + }, + ], + "description": "We've also fixed issues where empty messages would get appended to the chat.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/22#no-more-accidental-blank-messages", + "title": "No more accidental blank messages", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/22#quality-of-life-app-improvements", + "title": "Quality-of-life app improvements", + }, + ], + "description": "The keyboard shortcuts have been updated so its now easier to navigate in the log tables (up/down keys), and to run generations in Editor (cmd/ctrl + enter).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/22#weve-improved-keyboard-navigation", + "title": "We've improved keyboard navigation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/21", + "title": "November 21, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "Today, Anthropic released its latest model, **Claude 2.1**, and we've added support for it in the Humanloop app. + + + + +The new model boasts a 200K context window and a reported 2x decrease in hallucination rates. + +Additionally, this model introduces tool use to the line-up of Anthropic models. The feature is presently in beta preview, and we'll be adding support for it to Humanloop in the coming days. + +Read more about Claude 2.1 in the [official release notes](https://www.anthropic.com/index/claude-2-1).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/21#claude-21", + "title": "Claude 2.1", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20", + "title": "November 20, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've added support for parallel tool calls in our Editor and API. + +With the release of the latest OpenAI turbo models, the model can choose to respond with more than one tool call for a given query; this is referred to as [parallel tool calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#parallel-tool-calling", + "title": "Parallel tool calling", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/20#parallel-tool-calling", + "title": "Parallel tool calling", + }, + ], + "description": "You can now experiment with this new feature in our Editor: + +- Select one of the [new turbo models](/changelog/) in the model dropdown. +- Specify a tool in your model config on the left hand side. +- Make a request that would require multiple calls to answer correctly. +- As shown here for a weather example, the model will respond with multiple tool calls in the same message + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#editor-updates", + "title": "Editor updates", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/20#parallel-tool-calling", + "title": "Parallel tool calling", + }, + ], + "description": "We've added an additional field \`tool_calls\` to our chat endpoints response model that contains the array of tool calls returned by the model. The pre-existing \`tool_call\` parameter remains but is now marked as deprecated. + +Each element in the \`tool_calls\` array has an id associated to it. When providing the tool response back to the model for one of the tool calls, the \`tool_call_id\` must be provided, along with \`role=tool\` and the \`content\` containing the tool response. + +\`\`\`python +from humanloop import Humanloop + +# Initialize the Humanloop SDK with your API Keys +humanloop = Humanloop(api_key="") + +# form of message when providing the tool response to the model +chat_response = humanloop.chat_deployed( + project_id="", + messages: [ + { + "role": "tool", + "content": "Horribly wet" + "tool_call_id": "call_dwWd231Dsdw12efoOwdd" + } + ] +) +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#api-implications", + "title": "API implications", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've improved the response models of our [Python SDK](https://github.com/humanloop/humanloop-python#raw-http-response) and now give users better control over HTTPs timeout settings.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#python-sdk-improvements", + "title": "Python SDK improvements", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/20#python-sdk-improvements", + "title": "Python SDK improvements", + }, + ], + "description": "As of **versions >= 0.6.0**, our Python SDK methods now return [Pydantic](https://docs.pydantic.dev/latest/) models instead of typed dicts. This improves developer ergonomics around typing and validations. + +- Previously, you had to use the [...] syntax to access response values: + +\`\`\`python +chat_response = humanloop.chat( + # parameters + ) +print(chat_response.project_id) +\`\`\` + +- With Pydantic-based response values, you now can use the . syntax to access response values. To access existing response model from \\< 0.6.0, use can still use the .raw namespace as specified in the [Raw HTTP Response section](https://github.com/humanloop/humanloop-python#raw-http-response). + +\`\`\`python +chat_response = humanloop.chat( + # parameters + ) +print(chat_response.project_id) +\`\`\` + +> 🚧 Breaking change +> +> Moving to >= 0.6.0 does represent a breaking change in the SDK. The underlying API remains unchanged.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#improved-response-model-types", + "title": "Improved response model types", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/20#python-sdk-improvements", + "title": "Python SDK improvements", + }, + ], + "description": "The default timeout used by [aiohttp](https://docs.aiohttp.org/en/stable/), which our SDK uses is 300 seconds. For very large prompts and the latest models, this can cause timeout errors to occur. + +In the latest version of Python SDKs, we've increased the default timeout value to 600 seconds and you can update this configuration if you are still experiencing timeout issues by passing the new timeout argument to any of the SDK methods. For example passing\`timeout=1000\` will override the timeout to 1000 seconds.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#support-for-timeout-parameter", + "title": "Support for timeout parameter", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've introduced support for multi-modal models that can take both text and images as inputs! + +We've laid the foundations for multi-modal model support as part of our Editor and API. The first model we've configured is OpenAI's [GPT-4 with Vision (GPT-4V)](https://platform.openai.com/docs/guides/vision/vision). You can now select \`gpt-4-vision-preview\` in the models dropdown and add images to your chat messages via the API. + +Let us know what other multi-modal models you would like to see added next!", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#multi-modal-models", + "title": "Multi-modal models", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/20#multi-modal-models", + "title": "Multi-modal models", + }, + ], + "description": "To get started with GPT-4V, go to the Playground, or Editor within your project. + +- Select \`gpt-4-vision-preview\` in the models dropdown. +- Click the **Add images** button within a user's chat message. +- To add an image, either type a URL into the Image URL textbox or select "Upload image" to upload an image from your computer. If you upload an image, it will be converted to a Base64-encoded data URL that represents the image. +- Note that you can add multiple images + + + +To view the images within a log, find the log within the logs table and click on it to open it in a drawer. The images in each chat message be viewed within this drawer. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#editor-quick-start", + "title": "Editor quick start", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/20#multi-modal-models", + "title": "Multi-modal models", + }, + ], + "description": "Assuming you have deployed your \`gpt-4-vision-preview\` based model config, you can now also include images in messages via the API. + +\`\`\`python +from humanloop import Humanloop + +# Initialize the Humanloop SDK with your API Keys +humanloop = Humanloop(api_key="") + +# humanloop.chat_deployed(...) will call the active model config on your project. +chat_response = humanloop.chat_deployed( + project_id="", + messages: [ + { + "role": "user", + "content": [ + { + "type": "image_url", + "image_url": { + "detail": "high", + "url": "https://www.acomaanimalclinictucson.com/wp-content/uploads/2020/04/AdobeStock_288690671-scaled.jpeg" + } + } + ] +) +\`\`\` + +Any generations made will also be viewable from within your projects logs table.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#api-quick-start", + "title": "API quick start", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/20#multi-modal-models", + "title": "Multi-modal models", + }, + ], + "description": "There are some know limitations with the current preview iteration of OpenAI's GPT-4 model to be aware of: + +- Image messages are only supported by the \`gpt-4-vision-preview\` model in chat mode. +- GPT-4V model does not support tool calling or JSON mode. +- You cannot add images to the first \`system\` message.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#limitations", + "title": "Limitations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've introduced new model config parameters for **JSON mode** and **Seed** in our Editor and API. + +With the introduction of the new [OpenAI turbo models](https://docs.humanloop.com/changelog/gpt4-turbo-preview) you can now set additional properties that impact the behaviour of the model; \`response_format\` and \`seed\`. + + +> +See further guidance from OpenAI on the JSON response format [here](https://platform.openai.com/docs/guides/text-generation/json-mode) and reproducing outputs using the seed parameter [here](https://platform.openai.com/docs/guides/text-generation/reproducible-outputs). + + +These new parameters can now optionally contribute to your model config in our Editor and API. Updated values for \`response_format\` or \`seed\` will constitute new versions of your model on Humanloop. + + + + +When using JSON mode with the new turbo models, you should still include formatting instructions in your prompt. + +In fact, if you do not include the word 'json' anywhere in your prompt, OpenAI will return a validation error currently. +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/20#json-mode-and-seed-parameters", + "title": "JSON mode and seed parameters", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/17", + "title": "November 17, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "Until now, it's been possible to trigger LLM-based evaluations by writing Python code that uses the Humanloop API to trigger the LLM generations. + +Today, in order to make this increasingly important workflow simpler and more intuitive, we're releasing **LLM Evaluators**, which require no Python configuration. + +From the Evaluations page, click **New Evaluator** and select LLM Evaluator. + +You can now choose between the existing Python Evaluators and our new LLM Evaluators. + + +Instead of a code editor, the right hand side of the page is now a prompt editor for defining instructions to the LLM Evaluator. Underneath the prompt, you can configure the parameters of the Evaluator (things like model, temperature etc.) just like any normal model config. + +LLM Evaluator Editor. + + +In the prompt editor, you have access to a variety of variables that correspond to data from the underlying Log that you are trying to evaluate. These use the usual \`{{ variable }}\` syntax, and include: + +- \`log_inputs\` - the input variables that were passed in to the prompt template when the Log was generated +- \`log_prompt\` - the fully populated prompt (if it was a completion mode generation) +- \`log_messages\` - a JSON representation of the messages array (if it was a chat mode generation) +- \`log_output\` - the output produced by the model +- \`log_error\` - if the underlying Log was an unsuccessful generation, this is the error that was produced +- \`testcase\` - when in offline mode, this is the testcase that was used for the evaluation. + +Take a look at some of the presets we've provided on the left-hand side of the page for inspiration. + +LLM Evaluator presets. You'll likely need to tweak these to fit your use case. + + +At the bottom of the page you can expand the debug console - this can be used verify that your Evaluator is working as intended. We've got further enhancements coming to this part of the Evaluator Editor very soon. + +Since an LLM Evaluator is just another model config managed within Humanloop, it gets its own project. When you create an LLM Evaluator, you'll see that a new project is created in your organisation with the same name as the Evaluator. Every time the Evaluator produces a Log as part of its evaluation activity, that output will be visible in the Logs tab of that project.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/17#llm-evaluators", + "title": "LLM Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "Given our current focus on delivering a best-in-class evaluations experience, we've promoted the Evaluator editor to a full-page screen in the app. + +![](file:be95c8e8-5c87-4176-9446-a197c8a8adbf) + +In the left-hand pane, you'll find drop-downs to: + +- Select the mode of the Evaluator - either Online or Offline, depending on whether the Evaluator is intended to run against pre-defined testcases or against live production Logs +- Select the return type of the Evaluator - either boolean or number + +Underneath that configuration you'll find a collection of presets. + +Preset selector.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/17#improved-evaluator-editor", + "title": "Improved evaluator editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/10", + "title": "November 10, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "We've added comparison charts to the evaluation runs page to help you better compare your evaluation results. These can be found in the evaluations run tab for each of your projects. + +![](file:27d505f5-2522-49a2-9e2b-6c9568c79cc6)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/10#evaluation-comparison-charts", + "title": "Evaluation comparison charts", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/10#evaluation-comparison-charts", + "title": "Evaluation comparison charts", + }, + ], + "description": "You can use this to compare specific evaluation runs by selecting those in the runs table. If you don't select any specific rows the charts show an averaged view of all the previous runs for all the evaluators. + +![](file:d5af22d3-88c4-4163-8b1f-f578ccc8b88b)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/10#comparing-runs", + "title": "Comparing runs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/10#evaluation-comparison-charts", + "title": "Evaluation comparison charts", + }, + ], + "description": "To hide a chart for a specific evaluator you can hide the column in the table and it will hide the corresponding chart. + +![](file:eae088ba-cfea-4e96-ae82-331523b2d291)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/10#hiding-a-chart", + "title": "Hiding a chart", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/9", + "title": "November 9, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "You can now compare generations across Model Configs and inputs in Editor! + +![](file:2b33e4b9-8bbb-4658-800f-7e51ac746e61)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/9#comparison-mode-in-editor", + "title": "Comparison mode in Editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/9#comparison-mode-in-editor", + "title": "Comparison mode in Editor", + }, + ], + "description": "To enter comparison mode, click **New panel** in the dropdown menu adds a new blank panel to the right. + +**Duplicate panel** adds a new panel containing the same information as your current panel. + +[Clicking **New panel** in the dropdown menu... + + +... will open a new panel to the right. + + +Each panel is split into two section: a Model Config section at the top and an Inputs & Chat section at the bottom. These can be collapsed and resized to suit your experimentation. + +If you've made changes in one panel, you can copy the changes you've made using the **Copy** button in the subsection's header and paste it in the target panel using its corresponding **Paste** button. + +The **Copy** button on the left panel will copy the new chat template... + + +... and the **Paste** button on the right panel will then update its chat template.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/9#quick-start", + "title": "Quick start", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/9#comparison-mode-in-editor", + "title": "Comparison mode in Editor", + }, + ], + "description": "Our recently-introduced local history has also been upgraded to save your full session even when you have multiple panels open. + +The toggle to completion mode and the button to open history have now been moved into the new dropdown menu. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/9#other-changes", + "title": "Other changes", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/8", + "title": "November 8, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "You can now trigger runs against multiple model configs simultaneously. + +This improves your ability to compare and evaluate changes across your prompts. We've also removed the summary cards. In their place, we've added a table that supports sorting and rearranging of columns to help you better interrogate results.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/8#improved-evaluation-runs", + "title": "Improved evaluation runs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/8#improved-evaluation-runs", + "title": "Improved evaluation runs", + }, + ], + "description": "To run evaluations against multiple model configs it's as simple as selecting the targeted model configs in the run dialog, similar to before, but multiple choices are now supported. This will trigger multiple evaluation runs at once, with each model config selected as a target. + +![](file:0742395d-cf92-4493-b49c-75aa8b716ffe)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/8#multiple-model-configs", + "title": "Multiple model configs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/8#improved-evaluation-runs", + "title": "Improved evaluation runs", + }, + ], + "description": "We've updated our evaluation runs with a table to help view the outcomes of runs in a more condensed form. It also allows you to sort results and trigger re-runs easier. As new evaluators are included, a column will be added automatically to the table. + +![](file:bab799a2-4b6f-4b2a-a4ee-20248aee89c3)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/8#evaluation-table", + "title": "Evaluation table", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + { + "slug": "docs/v5/changelog/2023/11/8#improved-evaluation-runs", + "title": "Improved evaluation runs", + }, + ], + "description": "We've exposed the re-run option in the table to allow you to quickly trigger runs again, or use older runs as a way to preload the dialog and change the parameters such as the target dataset or model config. + +![](file:73678520-4070-4cde-aa29-73f9181e590e)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/8#re-run-previous-evaluations", + "title": "Re-run previous evaluations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "Off the back of OpenAI's [dev day](https://devday.openai.com/) we've added support for the new turbo [models](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) that were announced: + +- **gpt-4-1106-preview** +- **gpt-3.5-turbo-1106** + +Both of these models add a couple of nice capabilities: + +- Better instruction following performance +- JSON mode that forces the model to return valid JSON +- Can call multiple tools at once +- Set a seed for reproducible outputs + +You can now access these in your Humanloop Editor and via the API. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/8#new-openai-turbos", + "title": "New OpenAI turbos", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/1", + "title": "November 1, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/11", + "title": "November 1900", + }, + ], + "description": "You can now resize the message section in the Logs and Session drawers, allowing you to review your logs more easily. + +![](file:5d7f7925-45d6-4233-9301-5683313d05c3) + +To resize the message section we've introduced a resize bar that you can drag up or down to give yourself the space needed. To reset the layout back to default just give the bar a double click.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/11/1#improved-logs-drawer", + "title": "Improved logs drawer", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/30", + "title": "October 30, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + ], + "description": "The Humanloop playground and editor now save history locally as you make edits, giving you complete peace of mind that your precisely-crafted prompts will not be lost due to an accidental page reload or navigating away. + +![](file:c03db74a-106a-4d69-9909-5dc0901cc0cc) + +Local history entries will be saved as you use the playground (e.g. as you modify your model config, make generations, or add messages). These will be visible under the **Local** tab within the history side panel. Local history is saved to your browser and is only visible to you. + +Our shared history feature, where all playground generations are saved, has now been moved under the **Shared** tab in the history side panel.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/30#local-editor-history", + "title": "Local editor history", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/17", + "title": "October 17, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + ], + "description": "You can now organize your projects into folders! + +Logging in to Humanloop will bring you to the new page where you can start arranging your projects. + +![](file:ba126627-d15b-4bf4-8aa9-91f8b6e18482) + +Navigate into folders and open projects by clicking on the row. To go back to a parent folder, click on the displayed breadcrumbs (e.g. "Projects" or "Development" in the above screenshot). + +***", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/17#project-folders", + "title": "Project folders", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + { + "slug": "docs/v5/changelog/2023/10/17#project-folders", + "title": "Project folders", + }, + ], + "description": "Searching will give you a list of directories and projects with a matching name. + +![](file:3c559b84-b124-4a32-8da1-93c10abbd1b3)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/17#search", + "title": "Search", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + { + "slug": "docs/v5/changelog/2023/10/17#project-folders", + "title": "Project folders", + }, + ], + "description": "You can move a group of projects and directories by selecting them and moving them together. + +1. Select the projects you want to move. + Tip: Put your cursor on a project row and press [x] to select the row. +2. To move the selected projects into a folder, drag and drop them into the desired folder. + +![](file:e215c0e0-ccf7-4bd5-96c7-965597ab8503) + +To move projects out of a folder and into a parent folder, you can drag and drop them onto the parent folder breadcrumbs: + +![](file:7f5b1499-3d1a-4fbb-b79e-b17fb43e8ec4) + +To move projects into deeply nested folders, it might be easier to select your target directory manually. To do so, select the projects you wish to move and then click the blue **Actions** button and then click **Move ...** to bring up a dialog allowing you to move the selected projects. + +![](file:5294ec62-1279-424e-850f-3c18159914cf) + +![](file:fb8f93ea-a77a-445b-9c1a-d6ad50360a13) + +*** + +If you prefer the old view, we've kept it around for now. Let us know what you're missing from the new view so we can improve it. + +The [Go to old layout] button will take you to the previous view without folders.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/17#moving-multiple-projects", + "title": "Moving multiple projects", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/16", + "title": "October 16, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + ], + "description": "We've introduced **Datasets** to Humanloop. Datasets are collections of **Datapoints**, which represent input-output pairs for an LLM call. + +We recently released **Datasets** in our Evaluations beta, by the name **Evaluation Testsets**. We're now promoting the concept to a first-class citizen within your projects. If you've previously been using testsets in the evaluations beta, you'll see that your testsets have now automatically migrated to datasets. + +Datasets can be created via CSV upload, converting from existing Logs in your project, or by API requests. + +See our [guides on datasets](/docs/guides/datasets), which show how to upload from CSV and perform a batch generation across the whole dataset. + +A single dataset that has been added to a project, with 9 datapoints. + +Clicking into a dataset, you can explore its datapoints. + +Datapoints are pre-defined input-output pairs. + +A dataset contains a collection of prompt variable **inputs** (the dynamic values which are interpolated into your model config prompt template at generation-time), as well as a collection of **messages** forming the chat history, and a **target** output with data representing what we expect the model to produce when it runs on those inputs. + +Datasets are useful for evaluating the behaviour of you model configs across a well-defined collection of test cases. You can use datasets to check for regressions as you iterate your model configs, knowing that you are checking behaviour against a deterministic collection of known important examples. + +Datasets can also be used as collections of input data for **fine-tuning** jobs.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/16#datasets", + "title": "Datasets", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/10", + "title": "October 10, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + ], + "description": "We've added support for a tool that can make GET calls to an external API. + +This can be used to dynamically retrieve context for your prompts. For example, you may wish to get additional information about a user from your system based on their ID, or look up additional information based on a query from a user. + +To set up the tool you need to provide the following details for your API: + +| Tool parameter | Description | Example | +| ---------------- | --------------------------------------------------------------------------- | ---------------------------------- | +| Name | A unique tool name to reference as a call signature in your prompts | \`get_api_tool\` | +| URL | The URL for your API endpoint | https://your-api.your-domain.com | +| API Key Header | The authentication header required by your endpoint. | \`X-API-KEY\` | +| API Key | The API key value to use in the authentication header. | \`sk_1234567891011121314\` | +| Query parameters | A comma delimited list of the query parameters to set when making requests. | user_query, client_id |", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/10#get-api-tool", + "title": "GET API tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + { + "slug": "docs/v5/changelog/2023/10/10#get-api-tool", + "title": "GET API tool", + }, + ], + "description": "First you will need to define your API. For demo purposes, we will create a [mock endpoint in postman](https://learning.postman.com/docs/designing-and-developing-your-api/mocking-data/setting-up-mock/). Our [mock endpoint](https://www.postman.com/humanloop/workspace/humanloop/request/12831443-9c48e591-b7b2-4a17-b56a-8050a133e1b5) simply returns details about a mock user given their \`user_id\`. + +A call to our Mock API in Python is as follows; note the query parameter \`user_id\` + +\`\`\`python +import requests + +url = "https://01a02b84-08c5-4e53-b283-a8c2beef331c.mock.pstmn.io/users?user_id=01234567891011" +headers = { + 'X-API-KEY': '' +} +response = requests.request("GET", url, headers=headers) +print(response.text) + +\`\`\` + +And returns the response: + +\`\`\`json +{ + "user_id", "012345678910", + "name": "Albert", + "company": "Humanloop", + "role": "Engineer" +} +\`\`\` + +We can now use this tool to inject information for a given user into our prompts.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/10#define-your-api", + "title": "Define your API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + { + "slug": "docs/v5/changelog/2023/10/10#get-api-tool", + "title": "GET API tool", + }, + ], + "description": "Navigate to the [tools tab](https://app.humanloop.com/hl-test/tools) in your organisation and select the \`Get API Call \` tool card: + + + + +Configure the tool with your API details: + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/10#set-up-the-tool", + "title": "Set up the tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + { + "slug": "docs/v5/changelog/2023/10/10#get-api-tool", + "title": "GET API tool", + }, + ], + "description": "Now your API tool is set up, you can use it to populate input variables in your prompt templates. Double curly bracket syntax is used to call a tool in the template. The call signature is the unique tool name with arguments for the query parameters defined when the tool was set up. + +In our mock example, the signature will be: \`get_user_api(user_id)\`. + +An example prompt template using this tool is: + +\`\`\`shell +You are a helpful assistant. Please draft an example job role summary for the following user: + +User details: {{ get_user_api(user_id) }} +Keep it short and concise. +\`\`\` + +The tool requires an input value to be provided for user_id. In our [playground environment](https://app.humanloop.com/playground) the result of the tool will be shown populated top right above the chat: + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/10#use-the-tool", + "title": "Use the tool", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/10", + "title": "October 1900", + }, + { + "slug": "docs/v5/changelog/2023/10/10#get-api-tool", + "title": "GET API tool", + }, + ], + "description": "Explore more complex examples of context stuffing such as defining your own custom RAG service.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/10/10#whats-next", + "title": "What's next", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/9/15", + "title": "September 15, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": "We've released a couple of minor useability improvements in the evaluations workflow.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/9/15#evaluations-improvements", + "title": "Evaluations improvements", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + { + "slug": "docs/v5/changelog/2023/9/15#evaluations-improvements", + "title": "Evaluations improvements", + }, + ], + "description": "When reviewing past runs of evaluations, you can now see summary statistics for each evaluator before clicking into the detail view, allowing for easier comparison between runs. + +![](file:00b994f8-b8b2-424d-8bed-d67c9a4845be)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/9/15#summary-statistics-for-evaluation-runs", + "title": "Summary statistics for evaluation runs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + { + "slug": "docs/v5/changelog/2023/9/15#evaluations-improvements", + "title": "Evaluations improvements", + }, + ], + "description": "To enable easier re-running of past evaluations, you can now click the **Re-run** button in the top-right of the evaluation detail view. + +![](file:457e4853-2790-4904-a348-8953f0720b86)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/9/15#re-running-evaluations", + "title": "Re-running evaluations", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": "Our Editor environment let's users incorporate [OpenAI function calling](https://openai.com/blog/function-calling-and-other-api-updates) into their prompt engineering workflows by defining tools. Tools are made available to the model as functions to call using the same universal JSON schema format. + +As part of this process it can be helpful to copy the full JSON definition of the tool for quickly iterating on new versions, or copy and pasting it into code. You can now do this directly from the tool definition in Editor: + + + + +Selecting the Copy button adds the full JSON definition of the tool to your clipboard: + +\`\`\`json +{ + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": [ + "celsius", + "fahrenheit" + ] + } + }, + "required": [ + "location" + ] + } +} +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/9/15#editor---copy-tools", + "title": "Editor - copy tools", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": "We've added support for SOO to our signup, login and invite flows. By default users can now use their Gmail accounts to access Humanloop. + +For our enterprise customers, this also unlocks the ability for us to more easily support their SAML-based single sign-on (SSO) set ups. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/9/15#single-sign-on-sso", + "title": "Single sign on (SSO)", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/9/13", + "title": "September 13, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + ], + "description": "We have altered routes specific to your organization to include the organization slug. The organization slug is a unique value that was derived from your organization name when your organization was created. + +For project paths we've dropped the \`projects\` label in favour of a more specific \`project\` label. + +An example of what this looks like can be seen below: + + + + +When a request is made to one of the legacy URL paths, we'll redirect it to the corresponding new path. Although the legacy routes are still supported, we encourage you to update your links and bookmarks to adopt the new naming scheme. +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/9/13#organization-slug-in-urls", + "title": "Organization slug in URLs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/9", + "title": "September 1900", + }, + { + "slug": "docs/v5/changelog/2023/9/13#organization-slug-in-urls", + "title": "Organization slug in URLs", + }, + ], + "description": "The organization slug can be updated by organization administrators. This can be done by navigating to the [general settings](https://app.humanloop.com/account/organization) page. Please exercise caution when changing this, as it will affect the URLs across the organization. + +![](file:1ddb18fa-51c9-4805-9b41-6b79176b5aca)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/9/13#updating-your-organization-slug", + "title": "Updating your organization slug", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/31", + "title": "August 31, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "You can now add **trusted email domains** to your organization. Adding trusted email domains allows new users, when creating an account with a matching email, to join your organization without requiring an invite.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/31#allow-trusted-email-domains", + "title": "Allow trusted email domains", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + { + "slug": "docs/v5/changelog/2023/8/31#allow-trusted-email-domains", + "title": "Allow trusted email domains", + }, + ], + "description": "Adding and removing trusted email domains is controlled from your organizations [General settings](https://app.humanloop.com/account/organization) page. + + +Only Admins can manage trusted domains for an organization. + + +To add a new trusted domain press the **Add domain** button and enter the domains trusted by your organization. The domains added here will check against new users signing up to Humanloop and if there is a match those users will be given the option to join your organization. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/31#managing-trusted-domains", + "title": "Managing trusted domains", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + { + "slug": "docs/v5/changelog/2023/8/31#allow-trusted-email-domains", + "title": "Allow trusted email domains", + }, + ], + "description": "New users signing up to Humanloop will see the following screen when they signup with an email that matches and organizations trusted email domain. By pressing Join they will be added to the matching organization. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/31#signup-for-new-users", + "title": "Signup for new users", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/21", + "title": "August 21, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "You can now insert a new message within an existing chat in our Editor. Click the plus button that appears between the rows. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/21#editor---insert-new-message-within-existing-chat", + "title": "Editor - insert new message within existing chat", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/15", + "title": "August 15, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We've added support for Anthropic's latest model Claude instant 1.2! Claude Instant is the faster and lower-priced yet still very capable model from Anthropic, great for use cases where low latency and high throughput are required. + +You can use Claude instant 1.2 directly within the Humanloop playground and deployment workflows. + +Read more about the latest Claude instant model [here](https://www.anthropic.com/index/releasing-claude-instant-1-2).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/15#claude-instant-12", + "title": "Claude instant 1.2", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/14", + "title": "August 14, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/8", + "title": "August 1900", + }, + ], + "description": "We're continuing to build and release more functionality to Humanloop's evaluations framework! + +Our first release provided the ability to run **online evaluators** in your projects. Online evaluators allow you to monitor the performance of your live deployments by defining functions which evaluate all new datapoints in real time as they get logged to the project. + +Today, to augment online evaluators, we are releasing **offline evaluators** as the second part of our evaluations framework. + +Offline evaluators provide the ability to test your prompt engineering efforts rigorously in development and CI. Offline evaluators test the performance of your model configs against a pre-defined suite of **testcases** - much like unit testing in traditional programming. + +With this framework, you can use test-driven development practices to iterate and improve your model configs, while monitoring for regressions in CI. + +To learn more about how to use online and offline evaluators, check out the [Evaluate your model](/docs/guides/evaluate-your-model) section of our guides. + +![](file:85348eb6-f900-47f8-96d0-1c37d5f0d125)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/8/14#offline-evaluations-with-testsets", + "title": "Offline evaluations with testsets", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/30", + "title": "July 30, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "We've unified how errors returned by model providers are handled and enabled error monitoring using [eval functions](/docs/guides/evaluate-your-model). + +A common production pain point we see is that hosted SOTA language models can still be flaky at times, especially at real scale. With this release, Humanloop can help users better understand the extent of the problem and guide them to different models choices to improve reliability.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/30#improved-error-handling", + "title": "Improved error handling", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/30#improved-error-handling", + "title": "Improved error handling", + }, + ], + "description": "Our users integrate the Humanloop \`/chat\` and \`/completion\` API endpoints as a unified interface into all the popular model providers including OpenAI, Anthropic, Azure, Cohere, etc. Their Humanloop projects can then be used to manage model experimentation, versioning, evaluation and deployment. + +Errors returned by these endpoints may be raised by the model provider's system. With this release we've updated our API to map all the error behaviours from different model providers to a unified set of [error response codes](/api-reference/errors#http-error-codes). + +We've also extended our error responses to include more details of the error with fields for \`type\`, \`message\`, \`code\` and \`origin\`. The \`origin\` field indicates if the error originated from one of the integrated model providers systems, or directly from Humanloop. + +For example, for our \`/chat \` endpoint where we attempt to call OpenAI with an invalid setting for \`max_tokens\`, the message returned is that raised by OpenAI and the origin is set to OpenAI. + +\`\`\`json +{ + "type": "unprocessable_entity_error", + "message": "This model's maximum context length is 4097 tokens. However, you requested 10000012 tokens (12 in the messages, 10000000 in the completion). Please reduce the length of the messages or completion.", + "code": 422, + "origin": "OpenAI" +} +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/30#unified-errors", + "title": "Unified errors", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/30#improved-error-handling", + "title": "Improved error handling", + }, + ], + "description": "With this release, all errors returned from the different model providers are now persisted with the corresponding input data as datapoints on Humanloop. Furthermore this error data is made available to use within [evaluation functions](/docs/guides/evaluate-your-model). + +You can now turn on the **Errors** eval function, which tracks overall error rates of the different model variations in your project. Or you can customise this template to track more specific error behaviour. + +Errors evaluation function template now available", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/30#monitor-model-reliability-with-evals", + "title": "Monitor model reliability with evals", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/25", + "title": "July 25, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "We've added support for [OpenAI functions](https://platform.openai.com/docs/guides/gpt/function-calling) to our playground! + +This builds on our [API support](https://humanloop.com/docs/changelog/2023/7/3) and allows you to easily experiment with OpenAI functions within our playground UI. + +OpenAI functions are implemented as [tools](https://humanloop.com/docs/guides/set-up-semantic-search) on Humanloop. Tools follow the same universal [json-schema](https://json-schema.org/) definition as OpenAI functions. You can now define tools as part of your model configuration in the playground. These tools are sent as OpenAI functions when running the OpenAI chat models that support function calling. + +The model can choose to return a JSON object containing the arguments needed to call a function. This object is displayed as a special assistant message within the playground. You can then provide the result of the call in a message back to the model to consider, which simulates the function calling workflow.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/25#openai-functions-in-playground", + "title": "OpenAI functions in Playground", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/25#openai-functions-in-playground", + "title": "OpenAI functions in Playground", + }, + ], + "description": "Take the following steps to use tools for function calling in the playground: + +1. **Find tools:** Navigate to the playground and locate the \`Tools\` section. This is where you'll be able to manage your tool definitions. + +![](file:4507074f-3d29-4ea5-b231-329757e00a90) + +2. **Create a new tool:** Click on the "Add Tool" button. There are two options in the dropdown: create a new tool or to start with one of our examples. You define your tool using the [json-schema](https://json-schema.org/) syntax. This represents the function definition sent to OpenAI. + +![](file:5c4cfad2-5e18-429a-9a6d-1a24f6285c2d) + +3. **Edit a tool:** To edit an existing tool, simply click on the tool in the Tools section and make the necessary changes to its json-schema definition. This will result in a new model configuration. + +![](file:0a23afc8-a949-4ea2-a0dd-e309e230b5f3) + +4. **Run a model with tools:** Once you've defined your tools, you can run the model by pressing the "Run" button. + 1. If the model chooses to call a function, an assistant message will be displayed with the corresponding tool name and arguments to use. + 2. A subsequent \`Tool\` message is then displayed to simulate sending the results of the call back to the model to consider. + +![](file:9e260b75-d1f1-4969-8946-f13b38ff7fc2) + +5. **Save your model config with tools** by using the **Save** button. Model configs with tools defined can then deployed to [environments](/docs/guides/deploy-to-an-environment) as normal.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/25#use-tools-in-playground", + "title": "Use tools in Playground", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/25#openai-functions-in-playground", + "title": "OpenAI functions in Playground", + }, + ], + "description": "Provide the runtime for your tool under the existing pre-defined [Tools section ](https://app.humanloop.com/tools) of your organization on Humanloop.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/25#coming-soon", + "title": "Coming soon", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/24", + "title": "July 24, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "We've added support for Llama 2! + +You can now select \`llama70b-v2\` from the model dropdown in the Playground and Editor. You don't currently need to provide an API key or any other special configuration to get Llama 2 access via Humanloop. + +Llama 2 is available in Playground and Editor for all Humanloop users. + + +Read more about the latest version of Llama [here](https://ai.meta.com/llama/) and in the [original announcement](https://about.fb.com/news/2023/07/llama-2/).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/24#llama-2", + "title": "Llama 2", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/17", + "title": "July 17, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "We've added support for Anthropic's latest model Claude 2.0! + +Read more about the latest Claude [here](https://www.anthropic.com/index/claude-2).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/17#claude-2", + "title": "Claude 2", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7", + "title": "July 7, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "We've added **Evaluators** to Humanloop in beta! + +Evaluators allow you to quantitatively define what constitutes a good or bad output from your models. Once set up, you can configure an Evaluators to run automatically across all new datapoints as they appear in your project; or, you can simply run it manually on selected datapoints from the **Data** tab. + +We're going to be adding lots more functionality to this feature in the coming weeks, so check back for more!", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7#evaluators", + "title": "Evaluators", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/7#evaluators", + "title": "Evaluators", + }, + ], + "description": "If you've been given access to the feature, you'll see a new **Evaluations** tab in the Humanloop app. To create your first evaluation function, select **+ New Evaluator**. In the dialog, you'll be presented with a library of example Evaluators, or you can start from scratch. + +We offer a library of example Evaluators to get you started. + + +We'll pick **Valid JSON** for this guide. + +Evaluator editor. + + +In the editor, provide details of your function's name, description and return type. In the code editor, you can provide a function which accepts a \`datapoint\` argument and should return a value of the chosen type. + +Currently, the available return types for an Evaluators are \`number\` and \`boolean\`. You should ensure that your function returns the expected data type - an error will be raised at runtime if not.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7#create-an-evaluator", + "title": "Create an Evaluator", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/7#evaluators", + "title": "Evaluators", + }, + { + "slug": "docs/v5/changelog/2023/7/7#create-an-evaluator", + "title": "Create an Evaluator", + }, + ], + "description": "The \`datapoint\` passed into your function will be a Python \`dict\` with the following structure. + +\`\`\`python +{ + "id":"data_XXXX", # Datapoint id + "model_config": {...}, # Model config used to generate the datapoint + "inputs": {...}, # Model inputs (interpolated into the prompt) + "output": "...", # Generated output from the model + "provider_latency": 0.6, # Provider latency in seconds + "metadata": {...}, # Additional metadata attached to the logged datapoint + "created_at": "...", # Creation timestamp + "feedback": [...] # Array of feedback provided on the datapoint +} +\`\`\` + +To inspect datapoint dictionaries in more detail, click **Random selection** in the debug console at the bottom of the window. This will load a random set of five datapoints from your project, exactly as they will be passed into the Evaluation Function. + +The debug console - load datapoints to inspect the argument passed into Evaluators. + + +For this demo, we've created a prompt which asks the model to produce valid JSON as its output. The Evaluator uses a simple \`json.loads\` call to determine whether the output is validly formed JSON - if this call raises an exception, it means that the output is not valid JSON, and we return \`False\`. + +\`\`\`python +import json + +def check_valid_json(datapoint): + try: + return json.loads(datapoint["output"]) is not None + except: + return False +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7#the-datapoint-argument", + "title": "The Datapoint argument", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/7#evaluators", + "title": "Evaluators", + }, + { + "slug": "docs/v5/changelog/2023/7/7#create-an-evaluator", + "title": "Create an Evaluator", + }, + ], + "description": "Once you have drafted a Python function, try clicking the run button next to one of the debug datapoints in the debug console. You should shortly see the result of executing your function on that datapoint in the table. + +A \`True\` result from executing the **Valid JSON** Evaluators on the datapoint. + + +If your Evaluator misbehaves, either by being invalid Python code, raising an unhandled exception or returning the wrong type, an error will appear in the result column. You can hover this error to see more details about what went wrong - the exception string is displayed in the tooltip. + +Once you're happy with your Evaluator, click **Create** in the bottom left of the dialog.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7#debugging", + "title": "Debugging", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/7#evaluators", + "title": "Evaluators", + }, + ], + "description": "Your Evaluators are available across all your projects. When you visit the **Evaluations** tab from a specific project, you'll see all Evaluators available in your organisation. + +Each Evaluator has a toggle. If you toggle the Evaluator **on**, it will run on every new datapoint that gets logged to **that** project. (Switch to another project and you'll see that the Evaluator is not yet toggled on if you haven't chosen to do so). + +You can deactivate an Evaluator for a project by toggling it back off at any time.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7#activate--deactivate-an-evaluator", + "title": "Activate / Deactivate an Evaluator", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/7#evaluators", + "title": "Evaluators", + }, + ], + "description": "At the top of the **Dashboard** tab, you'll see new charts for each activated Evaluation Function. These display aggregated Evaluation results through time for datapoints in the project. + +At the bottom of the **Dashboard** tab is a table of all the model configs in your project. That table will display a column for each activated Evaluator in the project. The data displayed in this column is an aggregation of all the Evaluation Results (by model config) for each Evaluator. This allows you to assess the relative performance of your models. + +Evaluation Results through time, by model config. In this example, one of the model configs is not producing Valid JSON outputs, while the other is about 99% of the time.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7#aggregations-and-graphs", + "title": "Aggregations and Graphs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/7#evaluators", + "title": "Evaluators", + }, + { + "slug": "docs/v5/changelog/2023/7/7#aggregations-and-graphs", + "title": "Aggregations and Graphs", + }, + ], + "description": "For the purposes of both the charts and the model configs table, aggregations work as follows for the different return types of Evaluators: + +- \`Boolean\`: percentage returning \`True\` of the total number of evaluated datapoints +- \`Number\`: average value across all evaluated datapoints", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7#aggregation", + "title": "Aggregation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/7#evaluators", + "title": "Evaluators", + }, + ], + "description": "In the **Data** tab, you'll also see that a column is visible for each activated Evaluator, indicating the result of running the function on each datapoint. + +The **Data** tab for a project, showing the **Valid JSON** Evaluation Results for a set of datapoints. + + +From this tab, you can choose to re-run an Evaluator on a selection of datapoints. Either use the menu at the far right of a single datapoint, or select multiple datapoints and choose **Run evals** from the **Actions** menu in the top right.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7#data-logs", + "title": "Data logs", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/7#evaluators", + "title": "Evaluators", + }, + ], + "description": "The following Python modules are available to be imported in your Evaluation Function: + +- \`math\` +- \`random\` +- \`datetime\` +- \`json\` (useful for validating JSON grammar as per the example above) +- \`jsonschema\` (useful for more fine-grained validation of JSON output - see the in-app example) +- \`sqlglot\` (useful for validating SQL query grammar) +- \`requests\` (useful to make further LLM calls as part of your evaluation - see the in-app example for a suggestion of how to get started). + +Let us know if you would like to see more modules available.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/7#available-modules", + "title": "Available Modules", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/5", + "title": "July 5, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "We've introduced sessions to Humanloop, allowing you to link multiple calls together when building a chain or agent. + +Using sessions with your LLM calls helps you troubleshoot and improve your chains and agents. + +Trace of an Agent's steps logged as a session", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/5#chain-llm-calls", + "title": "Chain LLM calls", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/5#chain-llm-calls", + "title": "Chain LLM calls", + }, + ], + "description": "To log your LLM calls to a session, you just need to define a unique identifier for the session and pass it into your Humanloop calls with \`session_reference_id\`. + +For example, using \`uuid4()\` to generate this ID, + +\`\`\`python +import uuid +session_reference_id = str(uuid.uuid4()) + +response = humanloop.complete( + project="sessions_example_assistant", + model_config={ + "prompt_template": "Question: {{user_request}}\\nGoogle result: {{google_answer}}\\nAnswer:\\n", + "model": "text-davinci-002", + "temperature": 0, + }, + inputs={"user_request": user_request, "google_answer": google_answer}, + session_reference_id=session_reference_id, +) +\`\`\` + +Similarly, our other methods such as \`humanloop.complete_deployed()\`, \`humanloop.chat()\`, and \`humanloop.log()\` etc. support \`session_reference_id\`. + +If you're using our API directly, you can pass \`session_reference_id\` within the request body in your \`POST /v4/completion\` etc. endpoints.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/5#adding-a-datapoint-to-a-session", + "title": "Adding a datapoint to a session", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/5#chain-llm-calls", + "title": "Chain LLM calls", + }, + ], + "description": "For a more detailed walkthrough on how to use \`session_reference_id\`, check out [our guide](/docs/guides/logging-session-traces) that runs through how to record datapoints to a session in an example script.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/5#further-details", + "title": "Further details", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/3", + "title": "July 3, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "Today we’re announcing Tools as a part of Humanloop. + +Tools allow you to connect an LLM to any API and to an array of data sources to give it extra capabilities and access to private data. Under your organization settings on Humanloop you can now configure and manage tools in a central place. + +Read more on [our blog](https://humanloop.com/blog/announcing-tools) and see an example of setting up a [tool for semantic search](/docs/guides/set-up-semantic-search).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/3#introducing-tools", + "title": "Introducing Tools", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + ], + "description": "We've updated our APIs to support [OpenAI function calling](https://platform.openai.com/docsgpt/function-calling). + +OpenAI functions are now supported as tools on Humanloop. This allows you to pass tool definitions as part of the model configuration when calling our \`chat\` and \`log\` endpoints. For the latest OpenAI models \`gpt-3.5-turbo-0613\` and \`gpt-4-0613\` the model can then choose to output a JSON object containing arguments to call these tools. + +This unlocks getting more reliable structured data back from the model and makes it easier to create useful agents.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/3#openai-functions-api", + "title": "OpenAI functions API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/3#openai-functions-api", + "title": "OpenAI functions API", + }, + ], + "description": "As described in the [OpenAI documentation](https://platform.openai.com/docsgpt/function-calling), the basic steps for using functions are: + +1. Call one of the models \`gpt-3.5-turbo-0613\` and \`gpt-4-0613\` with a user query and a set of function definitions described using the universal [json-schema](https://json-schema.org/) syntax. +2. The model can then choose to call one of the functions provided. If it does, a stringified JSON object adhering to your json schema definition will be returned. +3. You can then parse the string into JSON in your code and call the chosen function with the provided arguments (**NB:** the model may hallucinate or return invalid json, be sure to consider these scenarios in your code). +4. Finally call the model again by appending the function response as a new message. The model can then use this information to respond to the original use query. + +OpenAI have provided a simple example in their docs for a \`get_current_weather\` function that we will show how to adapt to use with Humanloop: + +\`\`\`python +import openai +import json + + +# Example dummy function hard coded to return the same weather +# In production, this could be your backend API or an external API +def get_current_weather(location, unit="fahrenheit"): + """Get the current weather in a given location""" + weather_info = { + "location": location, + "temperature": "72", + "unit": unit, + "forecast": ["sunny", "windy"], + } + return json.dumps(weather_info) + + +def run_conversation(): + # Step 1: send the conversation and available functions to GPT + messages = [{"role": "user", "content": "What's the weather like in Boston?"}] + functions = [ + { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. San Francisco, CA", + }, + "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]}, + }, + "required": ["location"], + }, + } + ] + response = openai.ChatCompletion.create( + model="gpt-3.5-turbo-0613", + messages=messages, + functions=functions, + function_call="auto", # auto is default, but we'll be explicit + ) + response_message = response["choices"][0]["message"] + + # Step 2: check if GPT wanted to call a function + if response_message.get("function_call"): + # Step 3: call the function + # Note: the JSON response may not always be valid; be sure to handle errors + available_functions = { + "get_current_weather": get_current_weather, + } # only one function in this example, but you can have multiple + function_name = response_message["function_call"]["name"] + fuction_to_call = available_functions[function_name] + function_args = json.loads(response_message["function_call"]["arguments"]) + function_response = fuction_to_call( + location=function_args.get("location"), + unit=function_args.get("unit"), + ) + + # Step 4: send the info on the function call and function response to GPT + messages.append(response_message) # extend conversation with assistant's reply + messages.append( + { + "role": "function", + "name": function_name, + "content": function_response, + } + ) # extend conversation with function response + second_response = openai.ChatCompletion.create( + model="gpt-3.5-turbo-0613", + messages=messages, + ) # get a new response from GPT where it can see the function response + return second_response + + +print(run_conversation()) +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/3#recap-on-openai-functions", + "title": "Recap on OpenAI functions", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/3#openai-functions-api", + "title": "OpenAI functions API", + }, + ], + "description": "OpenAI functions are treated as tools on Humanloop. Tools conveniently follow the same universal json-schema definition as OpenAI functions. + +We've expanded the definition of our model configuration to also include tool definitions. Historically the model config is made up of the chat template, choice of base model and any hyper-parameters that change the behaviour of the model. + +In the cases of OpenAIs \`gpt-3.5-turbo-0613\` and \`gpt-4-0613\` models, any tools defined as part of the model config are passed through as functions for the model to use. + +You can now specify these tools when using the Humanloop chat endpoint (as a replacement for OpenAI's ChatCompletion), or when using the Humanloop log endpoint in addition to the OpenAI calls:", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/3#using-with-humanloop-tools", + "title": "Using with Humanloop tools", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/3#openai-functions-api", + "title": "OpenAI functions API", + }, + { + "slug": "docs/v5/changelog/2023/7/3#using-with-humanloop-tools", + "title": "Using with Humanloop tools", + }, + ], + "description": "We show here how to update the \`run_conversation()\` method from the OpenAI example to instead use the Humanloop chat endpoint with tools: + +\`\`\`python +from humanloop import Humanloop + +hl = Humanloop( + # get your API key here: https://app.humanloop.com/account/api-keys + api_key="YOUR_API_KEY", +) + +def run_conversation(): + # Step 1: send the conversation and available functions to GPT + messages = [{"role": "user", "content": "What's the weather like in Boston?"}] + # functions are referred to as tools on Humanloop, but follows the same schema + tools = [ + { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. San Francisco, CA", + }, + "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]}, + }, + "required": ["location"], + }, + } + ] + response = hl.chat( + project="Assistant", + model_config={ + "model": "gpt-3.5-turbo-0613", + "tools": tools + }, + messages=messages + ) + response = response.body.data[0] + + # Step 2: check if GPT wanted to call a tool + if response.get("tool_call"): + # Step 3: call the function + # Note: the JSON response may not always be valid; be sure to handle errors + available_functions = { + "get_current_weather": get_current_weather, + } # only one function in this example, but you can have multiple + function_name = response_message["function_call"]["name"] + fuction_to_call = available_functions[function_name] + function_args = json.loads(response["tool_call"]["arguments"]) + function_response = fuction_to_call( + location=function_args.get("location"), + unit=function_args.get("unit"), + ) + + # Step 4: send the response back to the model + messages.append(response_message) + messages.append( + { + "role": "tool", + "name": function_name, + "content": function_response, + } + ) + second_response = hl.chat( + project="Assistant", + model_config={ + "model": "gpt-3.5-turbo-0613", + "tools": tools + }, + messages=messages + ) + return second_response +\`\`\` + +After running this snippet, the model configuration recorded on your project in Humanloop will now track what tools were provided to the model and the logged datapoints will provide details of the tool called to inspect: + +![](file:d3fcafd5-8dff-4584-bdf5-980a87614427)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/3#chat-endpoint", + "title": "Chat endpoint", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/3#openai-functions-api", + "title": "OpenAI functions API", + }, + { + "slug": "docs/v5/changelog/2023/7/3#using-with-humanloop-tools", + "title": "Using with Humanloop tools", + }, + ], + "description": "Alternatively, you can also use the explicit Humanloop log alongside your existing OpenAI calls to achieve the same result: + +\`\`\`python +from humanloop import Humanloop + +hl = Humanloop( + # get your API key here: https://app.humanloop.com/account/api-keys + api_key="YOUR_API_KEY", +) + +def run_conversation(): + # Step 1: send the conversation and available functions to GPT + messages = [{"role": "user", "content": "What's the weather like in Boston?"}] + functions = [ + { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. San Francisco, CA", + }, + "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]}, + }, + "required": ["location"], + }, + } + ] + response = openai.ChatCompletion.create( + model="gpt-3.5-turbo-0613", + messages=messages, + functions=functions, + function_call="auto", # auto is default, but we'll be explicit + ) + response_message = response["choices"][0]["message"] + + # log the result to humanloop + log_response = hl.log( + project="Assistant", + model_config={ + "model": "gpt-3.5-turbo-0613", + "tools": tools, + }, + messages=messages, + tool_call=response_message.get("function_call") + ) + + # Step 2: check if GPT wanted to call a function + if response_message.get("function_call"): + # Step 3: call the function + # Note: the JSON response may not always be valid; be sure to handle errors + available_functions = { + "get_current_weather": get_current_weather, + } # only one function in this example, but you can have multiple + function_name = response_message["function_call"]["name"] + fuction_to_call = available_functions[function_name] + function_args = json.loads(response_message["function_call"]["arguments"]) + function_response = fuction_to_call( + location=function_args.get("location"), + unit=function_args.get("unit"), + ) + + # Step 4: send the info on the function call and function response to GPT + messages.append(response_message) # extend conversation with assistant's reply + messages.append( + { + "role": "function", + "name": function_name, + "content": function_response, + } + ) # extend conversation with function response + second_response = openai.ChatCompletion.create( + model="gpt-3.5-turbo-0613", + messages=messages, + ) # get a new response from GPT where it can see the function response + + log_response = hl.log( + project="Assistant", + model_config={ + "model": "gpt-3.5-turbo-0613", + "tools": tools, + }, + messages=messages, + output=second_response["choices"][0]["message"]["content"], + ) + return second_response + + +print(run_conversation()) +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/3#log-endpoint", + "title": "Log endpoint", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/7", + "title": "July 1900", + }, + { + "slug": "docs/v5/changelog/2023/7/3#openai-functions-api", + "title": "OpenAI functions API", + }, + ], + "description": "Support for defining tools in the playground!", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/7/3#coming-soon", + "title": "Coming soon", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/27", + "title": "June 27, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "We've added support for environments to your deployments in Humanloop! + +This enables you to deploy your model configurations to specific environments. You'll no longer have to duplicate your projects to manage the deployment workflow between testing and production. With environments, you'll have the control required to manage the full LLM deployment lifecycle.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/27#deployment-environments", + "title": "Deployment environments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/27#deployment-environments", + "title": "Deployment environments", + }, + ], + "description": "Every organisation automatically receives a default production environment. For any of your existing projects that had active deployments define, these have been automatically migrated over to use the default environment with no change in behaviour for the APIs. + +You can create additional environments with custom names by visiting your organisation's [environments page](https://app.humanloop.com/account/environments).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/27#enabling-environments-for-your-organisation", + "title": "Enabling environments for your organisation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/27#deployment-environments", + "title": "Deployment environments", + }, + { + "slug": "docs/v5/changelog/2023/6/27#enabling-environments-for-your-organisation", + "title": "Enabling environments for your organisation", + }, + ], + "description": "Enter a custom name in the create environment dialog. Names have a constraint in that they must be unique within an organisation. + +![](file:c987da1d-9f61-46e6-ad6b-358acac5918b) + +The environments you define for your organisation will be available for each project and can be viewed in the project dashboard once created. + +![](file:f8d8d011-8051-4e9a-b6e0-79f06dc95dad)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/27#creating-an-environment", + "title": "Creating an environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/27#deployment-environments", + "title": "Deployment environments", + }, + { + "slug": "docs/v5/changelog/2023/6/27#enabling-environments-for-your-organisation", + "title": "Enabling environments for your organisation", + }, + ], + "description": "By default, the production environment is marked as the Default environment. This means that all API calls targeting the "Active Deployment," such as [Get Active Config](/api-reference/projects/getactiveconfig) or [Chat Deployed](/api-reference/chats/createdeployed) will use this environment. + + +Renaming environments will take immediate effect, so ensure that this change is planned and does not disrupt your production workflows. +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/27#the-default-environment", + "title": "The default environment", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/27#deployment-environments", + "title": "Deployment environments", + }, + ], + "description": "Once created on the environments page, environments can be used for each project and are visible in the respective project dashboards. + +You can deploy directly to a specific environment by selecting it in the **Deployments** section. + +![](file:d2a9f417-bc43-4729-beb0-52adc535df07) + +Alternatively, you can deploy to multiple environments simultaneously by deploying a Model Config from either the Editor or the Model Configs table.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/27#using-environments", + "title": "Using environments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/27#deployment-environments", + "title": "Deployment environments", + }, + ], + "description": "![](file:705f0552-7c7a-4cab-aa7d-a2519c207374) + +For v4.0 API endpoints that support Active Deployments, such as [Get Active Config](/api-reference/projects/getactiveconfig) or [Chat Deployed](/api-reference/chats/createdeployed), you can now optionally point to a model configuration deployed in a specific environment by including an optional additional \`environment\` field. + +You can find this information in our v4.0 API Documentation or within the environment card in the Project Dashboard under the "Use API" option. + +Clicking on the "Use API" option will provide code snippets that demonstrate the usage of the \`environment\` variable in practice. + +![](file:67da63be-577c-4fe7-a35a-78522f699c41)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/27#using-environments-via-api", + "title": "Using environments via API", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/20", + "title": "June 20, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "We've improved our Python SDK's streaming response to contain the datapoint ID. Using the ID, you can now provide feedback to datapoints created through streaming. + +The \`humanloop.chat_stream()\` and \`humanloop.complete_stream()\` methods now yield a dictionary with \`output\` and \`id\`. + +\`\`\`python +{'output': '...', 'id': 'data_...'} +\`\`\` + +Install the updated SDK with + +\`\`\`shell +pip install --upgrade humanloop +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/20#improved-python-sdk-streaming-response", + "title": "Improved Python SDK streaming response", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/20#improved-python-sdk-streaming-response", + "title": "Improved Python SDK streaming response", + }, + ], + "description": "\`\`\` +import asyncio +from humanloop import Humanloop + +humanloop = Humanloop( + api_key="YOUR_API_KEY", + openai_api_key="YOUR_OPENAI_API_KEY", +) + +async def main(): + response = await humanloop.chat_stream( + project="sdk-example", + messages=[ + { + "role": "user", + "content": "Explain asynchronous programming.", + } + ], + model_config={ + "model": "gpt-3.5-turbo", + "max_tokens": -1, + "temperature": 0.7, + "chat_template": [ + { + "role": "system", + "content": "You are a helpful assistant who replies in the style of {{persona}}.", + }, + ], + }, + inputs={ + "persona": "the pirate Blackbeard", + }, + ) + async for token in response.content: + print(token) # E.g. {'output': 'Ah', 'id': 'data_oun7034jMNpb0uBnb9uYx'} + +asyncio.run(main()) +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/20#example-snippet", + "title": "Example snippet", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "We've just added support for Azure deployments of OpenAI models to Humanloop! + +This update adds the ability to target Microsoft Azure deployments of OpenAI models to the playground and your projects. To set this up, visit your [organization's settings](https://app.humanloop.com/account/api-keys).", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/20#openai-azure-support", + "title": "OpenAI Azure support", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/20#openai-azure-support", + "title": "OpenAI Azure support", + }, + ], + "description": "As a prerequisite, you will need to already be setup with Azure OpenAI Service. See the [Azure OpenAI docs](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/how-to/create-resource?pivots=web-portal) for more details. At the time of writing, access is granted by application only. + +![](file:b06dd293-de11-4cbe-9583-1b71a9312c7d) + +Click the Setup button and provide your Azure OpenAI endpoint and API key. + +Your endpoint can be found in the Keys & Endpoint section when examining your resource from the Azure portal. Alternatively, you can find the value in Azure OpenAI Studio > Playground > Code View. An example endpoint is: docs-test-001.openai.azure.com. + +Your API keys can also be found in the Keys & Endpoint section when examining your resource from the Azure portal. You can use either KEY1 or KEY2.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/20#enabling-azure-openai-for-your-organization", + "title": "Enabling Azure OpenAI for your organization", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/20#openai-azure-support", + "title": "OpenAI Azure support", + }, + ], + "description": "Once you've successfully enabled Azure OpenAI for your organization, you'll be able to access it through the [playground](https://app.humanloop.com/playground) and in your projects in exactly the same way as your existing OpenAI and/or Anthropic models. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/20#working-with-azure-openai-models", + "title": "Working with Azure OpenAI models", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/20#openai-azure-support", + "title": "OpenAI Azure support", + }, + ], + "description": "As with other model providers, once you've set up an Azure OpenAI-backed model config, you can call it with the Humanloop [REST API or our SDKs](/docs/api-reference/sdks). + +\`\`\`typescript +import { Humanloop } from "humanloop"; + +const humanloop = new Humanloop({ + apiKey: "API_KEY", +}); + +const chatResponse = await humanloop.chat({ + project: "project_example", + messages: [ + { + role: "user", + content: "Write me a song", + }, + ], + provider_api_keys: { + openai_azure: OPENAI_AZURE_API_KEY, + openai_azure_endpoint: OPENAI_AZURE_ENDPOINT, + }, + model_config: { + model: "my-azure-deployed-gpt-4", + temperature: 1, + }, +}); + +console.log(chatResponse); +\`\`\` + +In the \`model_config.model\` field, provide the name of the model that you deployed from the Azure portal (see note below for important naming conventions when setting up your deployment in the Azure portal). + +The request will use the stored organization level key and endpoint you configured above, unless you override this on a per-request basis by passing both the endpoint and API key in the \`provider_api_keys\` field, as shown in the example above.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/20#rest-api-and-python--typescript-support", + "title": "REST API and Python / TypeScript support", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + { + "slug": "docs/v5/changelog/2023/6/20#openai-azure-support", + "title": "OpenAI Azure support", + }, + ], + "description": "When you deploy a model through the Azure portal, you'll have the ability to provide your deployment with a unique name. For instance, if you choose to deploy an instance of \`gpt-35-turbo\` in your OpenAI Service, you may choose to give this an arbitrary name like \`my-orgs-llm-model\`. + +In order to use all Humanloop features with your Azure model deployment, you must ensure that your deployments are named either with an unmodified base model name like \`gpt-35-turbo\`, or the base model name with a custom prefix like \`my-org-gpt-35-turbo\`. If your model deployments use arbitrary names which do not prefix a base model name, you may find that certain features such as setting \`max_tokens=-1\` in your model configs fail to work as expected.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/20#note-naming-model-deployments", + "title": "Note: Naming Model Deployments", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/13", + "title": "June 13, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/6", + "title": "June 1900", + }, + ], + "description": "We’ve introduced an Editor within each project to help you make it easier to to change prompts and bring in project specific data. + +The Editor will load up the currently active model config, and will save the generations in the project’s data table. + +You can now also bring datapoints directly to the Editor. Select any datapoints you want to bring to Editor (also through \`x\` shortcut) and you can choose to open them in Editor (or \`e\` shortcut) + +Press \`e\` while selecting a datapoint to bring it into Editor + +We think this workflow significantly improves the workflow to go from interesting datapoint to improved model config. As always, let us know if you have other feedback.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/6/13#project-editor", + "title": "Project Editor", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/23", + "title": "May 23, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": "We've just added support for Cohere to Humanloop! + + + +This update adds Cohere models to the playground and your projects - just add your Cohere API key in your [organization's settings](https://app.humanloop.com/account/api-keys). As with other providers, each user in your organization can also set a personal override API key, stored locally in the browser, for use in Cohere requests from the Playground.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/23#cohere", + "title": "Cohere", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + { + "slug": "docs/v5/changelog/2023/5/23#cohere", + "title": "Cohere", + }, + ], + "description": "Add your Cohere API key to your organization settings to start using Cohere models with Humanloop.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/23#enabling-cohere-for-your-organization", + "title": "Enabling Cohere for your organization", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + { + "slug": "docs/v5/changelog/2023/5/23#cohere", + "title": "Cohere", + }, + ], + "description": "Once you've successfully enabled Cohere for your organization, you'll be able to access it through the [playground](https://app.humanloop.com/playground) and in your projects, in exactly the same way as your existing OpenAI and/or Anthropic models. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/23#working-with-cohere-models", + "title": "Working with Cohere models", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + { + "slug": "docs/v5/changelog/2023/5/23#cohere", + "title": "Cohere", + }, + ], + "description": "As with other model providers, once you've set up a Cohere-backed model config, you can call it with the Humanloop [REST API or our SDKs](/docs/api-reference/sdks). + +\`\`\`typescript +import { Humanloop } from "humanloop"; + +const humanloop = new Humanloop({ + apiKey: "API_KEY", +}); + +const chatResponse = await humanloop.chat({ + project: "project_example", + messages: [ + { + role: "user", + content: "Write me a song", + }, + ], + provider_api_keys: { + cohere: COHERE_API_KEY, + }, + model_config: { + model: "command", + temperature: 1, + }, +}); + +console.log(chatResponse); +\`\`\` + +If you don't provide a Cohere API key under the \`provider_api_keys\` field, the request will fall back on the stored organization level key you configured above.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/23#rest-api-and-python--typescript-support", + "title": "REST API and Python / TypeScript support", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/17", + "title": "May 17, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + ], + "description": "We've just released a new version of our Python SDK supporting our v4 API! + +This brings support for: + +- 💬 Chat mode \`humanloop.chat(...)\` +- 📥 Streaming support \`humanloop.chat_stream(...)\` +- 🕟 Async methods \`humanloop.acomplete(...)\` + +[https://pypi.org/project/humanloop/](https://pypi.org/project/humanloop/)", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/17#improved-python-sdk", + "title": "Improved Python SDK", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + { + "slug": "docs/v5/changelog/2023/5/17#improved-python-sdk", + "title": "Improved Python SDK", + }, + ], + "description": "\`pip install --upgrade humanloop\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/17#installation", + "title": "Installation", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + { + "slug": "docs/v5/changelog/2023/5/17#improved-python-sdk", + "title": "Improved Python SDK", + }, + ], + "description": "\`\`\`python +complete_response = humanloop.complete( + project="sdk-example", + inputs={ + "text": "Llamas that are well-socialized and trained to halter and lead after weaning and are very friendly and pleasant to be around. They are extremely curious and most will approach people easily. However, llamas that are bottle-fed or over-socialized and over-handled as youth will become extremely difficult to handle when mature, when they will begin to treat humans as they treat each other, which is characterized by bouts of spitting, kicking and neck wrestling.[33]", + }, + model_config={ + "model": "gpt-3.5-turbo", + "max_tokens": -1, + "temperature": 0.7, + "prompt_template": "Summarize this for a second-grade student:\\n\\nText:\\n{{text}}\\n\\nSummary:\\n", + }, + stream=False, +) +pprint(complete_response) +pprint(complete_response.project_id) +pprint(complete_response.data[0]) +pprint(complete_response.provider_responses) +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/17#example-usage", + "title": "Example usage", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/5", + "title": "May 1900", + }, + { + "slug": "docs/v5/changelog/2023/5/17#improved-python-sdk", + "title": "Improved Python SDK", + }, + ], + "description": "For those coming from an older SDK version, this introduces some breaking changes. A brief highlight of the changes: + +- The client initialization step of \`hl.init(...)\` is now \`humanloop = Humanloop(...)\`. + - Previously \`provider_api_keys\` could be provided in \`hl.init(...)\`. They should now be provided when constructing \`Humanloop(...)\` client. + - \`\`\`python + humanloop = Humanloop( + api_key="YOUR_API_KEY", + openai_api_key="YOUR_OPENAI_API_KEY", + anthropic_api_key="YOUR_ANTHROPIC_API_KEY", + ) + \`\`\` +- \`hl.generate(...)\`'s various call signatures have now been split into individual methods for clarity. The main ones are: + - \`humanloop.complete(project, model_config={...}, ...)\` for a completion with the specified model config parameters. + - \`humanloop.complete_deployed(project, ...)\` for a completion with the project's active deployment.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/5/17#migration-from-03x", + "title": "Migration from 0.3.x", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/4/3", + "title": "April 3, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/4", + "title": "April 1900", + }, + ], + "description": "We now have a fully typed TypeScript SDK to make working with Humanloop even easier. + +[https://www.npmjs.com/package/humanloop](https://www.npmjs.com/package/humanloop) + +You can use this with your JavaScript, TypeScript or Node projects. + +**Installation** + +\`\`\`shell +npm i humanloop +\`\`\` + +**Example usage** + +\`\`\`typescript +import { Humanloop } from "humanloop" + +const humanloop = new Humanloop({ + // Defining the base path is optional and defaults to https://api.humanloop.com/v3 + // basePath: "https://api.humanloop.com/v3", + apiKey: 'API_KEY', +}) + + +const chatResponse = await humanloop.chat({ + "project": "project_example", + "messages": [ + { + "role": "user", + "content": "Write me a song", + } + ], + "provider_api_keys": { + "openai": OPENAI_API_KEY + }, + "model_config": { + "model": "gpt-4", + "temperature": 1, + }, +}) + +console.log(chatResponse) +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/4/3#typescript-sdk", + "title": "TypeScript SDK", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/3/30", + "title": "March 30, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": " + +We’ve added keyboard shortcuts to the datapoint viewer + +\`g\` for good +\`b\` for bad + +and \`j\` /\` k\` for next/prev + +This should help you for quickly annotating data within your team. + +You can also link to specific datapoint in the URL now as well.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/3/30#keyboard-shortcuts-and-datapoint-links", + "title": "Keyboard shortcuts and datapoint links", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/3/2", + "title": "March 2, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/3", + "title": "March 1900", + }, + ], + "description": "ChatGPT is here! It's called 'gpt-3.5-turbo'. Try it out today in playground and on the generate endpoint. + +Faster and 10x cheaper than text-davinci-003. + +", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/3/2#chatgpt-support", + "title": "ChatGPT support", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": undefined, + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/2/20", + "title": "February 20, 2023", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "Initial datapoints table is now twice as fast to load! And it will continue to get faster.", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/2/20#faster-datapoints-table-loading", + "title": "Faster datapoints table loading", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "Added a way to go from the datapoint drawer to the playground with that datapoint loaded. Very convenient for trying tweaks to a model config or understanding an issue, without copy pasting. + +
+ +
", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/2/20#ability-to-open-datapoint-in-playground", + "title": "Ability to open datapoint in playground", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/changelog", + "title": "Changelog", + }, + { + "slug": "docs/changelog/2023", + "title": "2023", + }, + { + "slug": "docs/changelog/2", + "title": "February 1900", + }, + ], + "description": "We’ve added a tab to the datapoint drawer so you can see the prompt template filled in with the inputs and output. + +We’ve also button in the top right hand corner (or press \`M\`) to toggle on/off viewing the text as markdown. + +
+ +
", + "indexSegmentId": "0", + "slug": "docs/v5/changelog/2023/2/20#markdown-view-and-completed-prompt-templates", + "title": "Markdown view and completed prompt templates", + "type": "page-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "In this tutorial, you’ll use Humanloop to quickly create a GPT-4 chat app. You’ll learn how to create a Prompt, call GPT-4, and log your results. You’ll also learn how to capture feedback from your end users to evaluate and improve your model. + +In this tutorial, you’ll use GPT-4 and Humanloop to quickly create a GPT-4 chat app that explains topics in the style of different experts. + +At the end of this tutorial, you’ll have created your first GPT-4 app. You’ll also have learned how to: + +1. Create a Prompt +2. Use the Humanloop SDK to call Open AI GPT-4 and log your results +3. Capture feedback from your end users to evaluate and improve your model + +In this tutorial, you'll build a simple GPT-4 app that can explain a topic in the style of different experts. + +This tutorial picks up where the [Quick Start](./quickstart) left off. If you’ve already followed the quick start you can skip to step 4 below.", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Create your first GPT-4 App", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": " +#### Create a Humanloop Account + +If you haven’t already, create an account or log in to Humanloop + +#### Add an OpenAI API Key + +If you’re the first person in your organization, you’ll need to add an API key to a model provider. + +1. Go to OpenAI and [grab an API key](https://platform.openai.com/api-keys) +2. In Humanloop [Organization Settings](https://app.humanloop.com/account/api-keys) set up OpenAI as a model provider. + + +Using the Prompt Editor will use your OpenAI credits in the same way that the OpenAI playground does. Keep your API keys for Humanloop and the model providers private. + + +", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#create-the-prompt", + "title": "Create the Prompt", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": " +### Create a Prompt File + +When you first open Humanloop you’ll see your File navigation on the left. Click ‘**+ New**’ and create a **Prompt**. + + + +In the sidebar, rename this file to "Comedian Bot" now or later. + +### Create the Prompt template in the Editor + +The left hand side of the screen defines your Prompt – the parameters such as model, temperature and template. The right hand side is a single chat session with this Prompt. + + + +Click the “**+ Message**” button within the chat template to add a system message to the chat template. + + + +Add the following templated message to the chat template. + +\`\`\` +You are a funny comedian. Write a joke about {{topic}}. +\`\`\` + +This message forms the chat template. It has an input slot called \`topic\` (surrounded by two curly brackets) for an input value that is provided each time you call this Prompt. + +On the right hand side of the page, you’ll now see a box in the **Inputs** section for \`topic\`. + +1. Add a value for \`topic\` e.g. music, jogging, whatever +2. Click **Run** in the bottom right of the page + +This will call OpenAI’s model and return the assistant response. Feel free to try other values, the model is _very_ funny. + +You now have a first version of your prompt that you can use. + +### Commit your first version of this Prompt + +1. Click the **Commit** button +2. Put “initial version” in the commit message field +3. Click **Commit** + + + +### View the logs + +Under the Prompt File, click ‘Logs’ to view all the generations from this Prompt + +Click on a row to see the details of what version of the prompt generated it. From here you can give feedback to that generation, see performance metrics, open up this example in the Editor, or add this log to a dataset. + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#get-started", + "title": "Get Started", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "Now that you’ve found a good prompt and settings, you’re ready to build the "Learn anything from anyone" app! We’ve written some code to get you started — follow the instructions below to download the code and run the app. + +When you run the app, this is what you should see.", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#call-the-prompt-in-an-app", + "title": "Call the Prompt in an app", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#call-the-prompt-in-an-app", + "title": "Call the Prompt in an app", + }, + ], + "description": "If you don’t have Python 3 installed, [install it from here](https://www.python.org/downloads/). Then download the code by cloning [this repository](https://github.com/humanloop/humanloop-tutorial-python) in your terminal: + +\`\`\`Text Python Tutorial +git clone git@github.com:humanloop/humanloop-tutorial-python.git +\`\`\` + +If you prefer not to use git, you can alternatively download the code using [this zip file](https://github.com/humanloop/humanloop-tutorial-python/archive/refs/heads/main.zip). + +In your terminal, navigate into the project directory and make a copy of the example environment variables file. + +\`\`\`Text Bash +cd humanloop-tutorial-python +cp .example.env .env +\`\`\` + +Copy your [Humanloop API key](https://app.humanloop.com/account/settings) and set it as \`HUMANLOOP_API_KEY\` in your newly created .env file. Copy your [OpenAI API key](https://beta.openai.com/account/api-keys) and set it as the \`OPENAI_API_KEY\`.", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#setup", + "title": "Setup", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#call-the-prompt-in-an-app", + "title": "Call the Prompt in an app", + }, + ], + "description": "Run the following commands in your terminal in the project directory to install the dependencies and run the app. + +\`\`\` +python -m venv venv +. venv/bin/activate +pip install -r requirements.txt +flask run +\`\`\` + +Open [http://localhost:5000](http://localhost:5000) in your browser and you should see the app. If you type in the name of an expert, e.g "Aristotle", and a topic that they're famous for, e.g "ethics", the app will try to generate an explanation in their style. + +Press the thumbs-up or thumbs-down buttons to register your feedback on whether the generation is any good. + +Try a few more questions. Perhaps change the name of the expert and keep the topic fixed.", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#run-the-app", + "title": "Run the app", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "Now that you have a working app you can use Humanloop to measure and improve performance. Go back to the Humanloop app and go to your project named "learn-anything". + +On the **_Models_** dashboard you'll be able to see how many data points have flowed through the app as well as how much feedback you've received. Click on your model in the table at the bottom of the page. + + + +Click **_View data_** in the top right. Here you should be able to see each of your generations as well as the feedback that's been logged against them. You can also add your own internal feedback by clicking on a datapoint in the table and using the feedback buttons.", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#view-the-data-on-humanloop", + "title": "View the data on Humanloop", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "Open up the file \`app.py\` in the "openai-quickstart-python" folder. There are a few key code snippets that will let you understand how the app works. + +Between lines 30 and 41 you'll see the following code. + +\`\`\`python +expert = request.form["Expert"] +topic = request.form["Topic"] + +# hl.complete automatically logs the data to your project. +complete_response = humanloop.complete_deployed( + project="learn-anything", + inputs={"expert": expert, "topic": topic}, + provider_api_keys={"openai": OPENAI_API_KEY} +) + +data_id = complete_response.data[0].id +result = complete_response.data[0].output +\`\`\` + +On line 34 you can see the call to \`humanloop.complete_deployed\` which takes the project name and project inputs as variables. \`humanloop.complete_deployed\` calls GPT-4 and also automatically logs your data to the Humanloop app. + +In addition to returning the result of your model on line 39, you also get back a \`data_id\` which can be used for recording feedback about your generations. + +On line 51 of \`app.py\`, you can see an example of logging feedback to Humanloop. + +\`\`\`python +# Send feedback to Humanloop +humanloop.feedback(type="rating", value="good", data_id=data_id) +\`\`\` + +The call to \`humanloop.feedback\` uses the \`data_id\` returned above to associate a piece of positive feedback with that generation. + +In this app there are two feedback groups \`rating\` (which can be \`good\` or \`bad\`) and \`actions\`, which here is the copy button and also indicates positive feedback from the user.", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#understand-the-code", + "title": "Understand the code", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "If you experiment a bit, you might find that the model isn't initially that good. The answers are often too short or not in the style of the expert being asked. We can try to improve this by experimenting with other prompts. + +1. Click on your model on the model dashboard and then in the top right, click **_Editor_** + + + +2. Edit the prompt template to try and improve the prompt. Try changing the maximum number of tokens using the **_Max tokens_** slider, or the wording of the prompt. + + +Here are some prompt ideas to try out. Which ones work better? + + + \`\`\`Text Transcript from lecture + {{ expert }} recently gave a lecture on {{ topic }}. Here is a transcript of the + most interesting section: \`\`\` \`\`\`Text ELI10 If {{ expert }} explained {{ + topic, + }} to a 10 year old, they would likely say: \`\`\` \`\`\` Write an essay in the style + of {{ expert }} on {{ topic }} + \`\`\` + + +3. Click **_Save_** to add the new model to your project. Add it to the "learn-anything" project. + + + +4. Go to your project dashboard. At the top left of the page, click menu of "production" environment card. Within that click the button **_Change deployment_** and set a new model config as active; calls to \`humanloop.complete_deployed\` will now use this new model. Now go back to the app and see the effect! + +", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#add-a-new-model-config", + "title": "Add a new model config", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "And that’s it! You should now have a full understanding of how to go from creating a Prompt in Humanloop to a deployed and functioning app. You've learned how to create prompt templates, capture user feedback and deploy a new models. + +If you want to learn how to improve your model by running experiments or finetuning check out our guides below.", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app#congratulations", + "title": "Congratulations!", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "In this tutorial, you'll build a custom ChatGPT using Next.js and streaming using Humanloop TypeScript SDK. + +In this tutorial, you'll build a custom ChatGPT using Next.js and streaming using Humanloop TypeScript SDK. + +At the end of this tutorial, you'll have built a simple ChatGPT-style interface using Humanloop as the backend to manage interactions with your model provider, track user engagement and experiment with model configuration. + +If you just want to leap in, the complete repo for this project is available on GitHub [here.](https://github.com/humanloop/hl-chatgpt-clone-typescript) + +A simple ChatGPT-style interface using the Humanloop SDK to manage interaction with your model provider, track user engagement, log results and help you evaluate and improve your model.", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/chatgpt-clone-in-nextjs", + "title": "ChatGPT clone with streaming", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "First, create a Prompt with the name \`chat-tutorial-ts\`. Go to the **Editor** tab on the left. Here, we can play with parameters and prompt templates to create a model which will be accessible via the Humanloop SDK. + + + If this is your first time using the Prompt Editor, you'll be prompted to + enter an OpenAI API key. You can create one by going + [here.](https://beta.openai.com/account/api-keys) + + +The Prompt Editor is an interactive environment where you can experiment with prompt templates to create a model which will be accessible via the Humanloop SDK. + + + +Let's try to create a chess tutor. Paste the following _system message_ into the **Chat template** box on the left-hand side. + +\`\`\` +You are a chess grandmaster, who is also a friendly and helpful chess instructor. + +Play a game of chess with the user. Make your own moves in reply to the student. + +Explain succintly why you made that move. Make your moves in algebraic notation. +\`\`\` + +In the **Parameters** section above, select gpt-4 as the model. Click **Commit** and enter a commit message such as "GPT-4 Grandmaster". + +Navigate back to the **Dashboard** tab in the sidebar. Your new Prompt Version is visible in the table at the bottom of the Prompt dashboard.", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/chatgpt-clone-in-nextjs#step-1-create-a-new-prompt-in-humanloop", + "title": "Step 1: Create a new Prompt in Humanloop", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "Now, let's turn to building out a simple Next.js application. We'll use the Humanloop TypeScript SDK to provide programmatic access to the model we just created. + +Run \`npx create-next-app@latest\` to create a fresh Next.js project. Accept all the default config options in the setup wizard (which includes using TypeScript, Tailwind, and the Next.js app router). Now \`npm run dev\` to fire up the development server. + +Next \`npm i humanloop\` to install the Humanloop SDK in your project. + +Edit \`app/page.tsx\` to the following. This code stubs out the basic React components and state management we need for a chat interface. + +\`\`\`typescript page.tsx +"use client"; + +import { ChatMessageWithToolCall } from "humanloop"; +import * as React from "react"; + +const { useState } = React; + +export default function Home() { + const [messages, setMessages] = useState([]); + const [inputValue, setInputValue] = useState(""); + + const onSend = async () => { + const userMessage: ChatMessageWithToolCall = { + role: "user", + content: inputValue, + }; + + setInputValue(""); + + const newMessages = [...messages, userMessage]; + + setMessages(newMessages); + + // REPLACE ME LATER + const res = "I'm not a language model. I'm just a string. 😞"; + // END REPLACE ME + + const assistantMessage: ChatMessageWithToolCall = { + role: "assistant", + content: res, + }; + + setMessages([...newMessages, assistantMessage]); + }; + + const handleKeyDown = (e: React.KeyboardEvent) => { + if (e.key === "Enter") { + onSend(); + } + }; + + return ( +
+

+ Chess Tutor +

+
+ {messages.map((msg, idx) => ( + + ))} + +
+
+ User +
+ setInputValue(e.target.value)} + onKeyDown={(e) => handleKeyDown(e)} + > + +
+
+
+ ); +} + +interface MessageRowProps { + msg: ChatMessageWithToolCall; +} + +const MessageRow: React.FC = ({ msg }) => { + return ( +
+
+ {msg.role} +
+
{msg.content as string}
+
+ ); +}; +\`\`\` + + + We shouldn't call the Humanloop SDK from the client's browser as this would + require giving out the Humanloop API key, which _you should not do!_ Instead, + we'll create a simple backend API route in Next.js which can perform the + Humanloop requests on the Node server and proxy these back to the client. + + +Create a file containing the code below at \`app/api/chat/route.ts\`. This will automatically create an API route at \`/api/chat\`. In the call to the Humanloop SDK, you'll need to pass the project name you created in step 1. + +\`\`\`typescript app/api/chat/route.ts +import { Humanloop, ChatMessageWithToolCall } from "humanloop"; + +if (!process.env.HUMANLOOP_API_KEY) { + throw Error( + "no Humanloop API key provided; add one to your .env.local file with: \`HUMANLOOP_API_KEY=..." + ); +} + +const humanloop = new Humanloop({ + basePath: "https://api.humanloop.com/v4", + apiKey: process.env.HUMANLOOP_API_KEY, +}); + +export async function POST(req: Request): Promise { + const messages: ChatMessageWithToolCall[] = + (await req.json()) as ChatMessageWithToolCall[]; + console.log(messages); + + const response = await humanloop.chatDeployed({ + project: "chat-tutorial-ts", + messages, + }); + + return new Response(JSON.stringify(response.data.data[0].output)); +} +\`\`\` + +In this code, we're calling \`humanloop.chatDeployed\`. This function is used to target the model which is actively deployed on your project - in this case it should be the model we set up in step 1. Other related functions in the [SDK reference](/docs/api-reference/sdks) (such as \`humanloop.chat\`) allow you to target a specific model config (rather than the actively deployed one) or even specify model config directly in the function call. + +When we receive a response from Humanloop, we strip out just the text of the chat response and send this back to the client via a \`Response\` object (see [Next.js - Route Handler docs](https://nextjs.org/docs/app/building-your-application/routing/router-handlers)). The Humanloop SDK response contains much more data besides the raw text, which you can inspect by logging to the console. + +For the above to work, you'll need to ensure that you have a \`.env.local\` file at the root of your project directory with your Humanloop API key. You can generate a Humanloop API key by clicking your name in the bottom left and selecting [API keys.](https://app.humanloop.com/account/api-keys) This environment variable will only be available on the Next.js server, not on the client (see [Next.js - Environment Variables](https://nextjs.org/docs/pages/building-your-application/configuring/environment-variables)). + +\`\`\`text .env.local +HUMANLOOP_API_KEY=... +\`\`\` + +Now, modify \`page.tsx\` to use a \`fetch\` request against the new API route. + +\`\`\`typescript page.tsx +const onSend = async () => { + // REPLACE ME NOW + + setMessages(newMessages); + + const response = await fetch("/api/chat", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(newMessages), + }); + + const res = await response.json(); + + // END REPLACE ME +}; +\`\`\` + +You should now find that your application works as expected. When we send messages from the client, a GPT response appears beneath (after a delay). + + + +Back in your Humanloop Prompt dashboard you should see Logs being recorded as clients interact with your model. + +", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/chatgpt-clone-in-nextjs#step-2-set-up-a-nextjs-application", + "title": "Step 2: Set up a Next.js application", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "(Note: requires Node version 18+). + +You may notice that model responses can take a while to appear on screen. Currently, our Next.js API route blocks while the entire response is generated, before finally sending the whole thing back to the client browser in one go. For longer generations, this can take some time, particularly with larger models like GPT-4. Other model config settings can impact this too. + +To provide a better user experience, we can deal with this latency by streaming tokens back to the client as they are generated and have them display eagerly on the page. The Humanloop SDK wraps the model providers' streaming functionality so that we can achieve this. Let's incorporate streaming tokens into our app next. + +Edit the API route at to look like the following. Notice that we have switched to using the \`humanloop.chatDeployedStream\` function, which offers [Server Sent Event](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events) streaming as new tokens arrive from the model provider. + +\`\`\`typescript app/api/chat/route.ts +import { Humanloop, ChatMessageWithToolCall } from "humanloop"; + +if (!process.env.HUMANLOOP_API_KEY) { + throw Error( + "no Humanloop API key provided; add one to your .env.local file with: \`HUMANLOOP_API_KEY=..." + ); +} + +const humanloop = new Humanloop({ + basePath: "https://api.humanloop.com/v4", + apiKey: process.env.HUMANLOOP_API_KEY, +}); + +export async function POST(req: Request): Promise { + const messages: ChatMessageWithToolCall[] = + (await req.json()) as ChatMessageWithToolCall[]; + + const response = await humanloop.chatDeployedStream({ + project: "chat-tutorial-ts", + messages, + }); + + return new Response(response.data); +} +\`\`\` + +Now, modify the \`onSend\` function in \`page.tsx\` to the following. This streams the response body in chunks, updating the UI each time a new chunk arrives. + +\`\`\`typescript app/page.tsx +const onSend = async () => { + const userMessage: ChatMessageWithToolCall = { + role: "user", + content: inputValue, + }; + + setInputValue(""); + + const newMessages: ChatMessageWithToolCall[] = [ + ...messages, + userMessage, + { role: "assistant", content: "" }, + ]; + + setMessages(newMessages); + + const response = await fetch("/api/chat", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(newMessages), + }); + + if (!response.body) throw Error(); + + const decoder = new TextDecoder(); + const reader = response.body.getReader(); + let done = false; + while (!done) { + const chunk = await reader.read(); + const value = chunk.value; + done = chunk.done; + const val = decoder.decode(value); + const jsonChunks = val + .split("}{") + .map( + (s) => (s.startsWith("{") ? "" : "{") + s + (s.endsWith("}") ? "" : "}") + ); + const tokens = jsonChunks.map((s) => JSON.parse(s).output).join(""); + + setMessages((messages) => { + const updatedLastMessage = messages.slice(-1)[0]; + + return [ + ...messages.slice(0, -1), + { + ...updatedLastMessage, + content: (updatedLastMessage.content as string) + tokens, + }, + ]; + }); + } +}; +\`\`\` + +You should now find that tokens stream onto the screen as soon as they are available. + +", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/chatgpt-clone-in-nextjs#step-3-streaming-tokens", + "title": "Step 3: Streaming tokens", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "We'll now add feedback buttons to the Assistant chat messages, and submit feedback on those Logs via the Humanloop API whenever the user clicks the buttons. + +Modify \`page.tsx\` to include an id for each message in React state. Note that we'll only have ids for assistant messages, and \`null\` for user messages. + +\`\`\`typescript page.tsx +// A new type which also includes the Humanloop data_id for a message generated by the model. +interface ChatListItem { + id: string | null; // null for user messages, string for assistant messages + message: ChatMessageWithToolCall; +} + +export default function Home() { + const [chatListItems, setChatListItems] = + useState([]); // <- update to use the new type + ... + +\`\`\` + +Modify the \`onSend\` function to look like this: + +\`\`\`typescript page.tsx +const onSend = async () => { + const userMessage: ChatMessageWithToolCall = { + role: "user", + content: inputValue, + }; + + setInputValue(""); + + const newItems: ChatListItem[] = [ + // <- modified to update the new list type + ...chatListItems, + { message: userMessage, id: null }, + { message: { role: "assistant", content: "" }, id: null }, + ]; + + setChatListItems(newItems); + + const response = await fetch("/api/chat", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(newItems.slice(0, -1).map((item) => item.message)), // slice off the final message, which is the currently empty placeholder for the assistant response + }); + + if (!response.body) throw Error(); + + const decoder = new TextDecoder(); + const reader = response.body.getReader(); + let done = false; + while (!done) { + const chunk = await reader.read(); + const value = chunk.value; + done = chunk.done; + const val = decoder.decode(value); + const jsonChunks = val + .split("}{") + .map( + (s) => (s.startsWith("{") ? "" : "{") + s + (s.endsWith("}") ? "" : "}") + ); + const tokens = jsonChunks.map((s) => JSON.parse(s).output).join(""); + const id = JSON.parse(jsonChunks[0]).id; // <- extract the data id from the streaming response + + setChatListItems((chatListItems) => { + const lastItem = chatListItems.slice(-1)[0]; + const updatedId = id || lastItem.id; // <- use the id from the streaming response if it's not already set + return [ + ...chatListItems.slice(0, -1), + { + ...lastItem, + message: { + ...lastItem.message, + content: (lastItem.message.content as string) + tokens, + }, + id: updatedId, // <- include the id when we update state + }, + ]; + }); + } +}; +\`\`\` + +Now, modify the \`MessageRow\` component to become a \`ChatItemRow\` component which knows about the id. + +\`\`\`typescript page.tsx +interface ChatItemRowProps { + item: ChatListItem; +} + +const ChatItemRow: React.FC = ({ item }) => { + const onFeedback = async (feedback: string) => { + const response = await fetch("/api/feedback", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ id: item.id, value: feedback }), + }); + }; + + return ( +
+
+ {item.message.role} +
+
+ {item.message.content as string} +
+
+
+ {item.id !== null && ( +
+ + +
+ )} +
+
+ ); +}; +\`\`\` + +And finally for \`page.tsx\`, modify the rendering of the message history to use the new component: + +\`\`\`typescript page.tsx +// OLD +// {messages.map((msg, idx) => ( +// +// ))} + +// NEW +{ + chatListItems.map((item, idx) => ( + + )); +} +\`\`\` + +Next, we need to create a Next.js API route for submitting feedback, similar to the one we had for making a \`/chat\` request. Create a new file at the path \`app/api/feedback/route.ts\` with the following code: + +\`\`\`typescript api/feedback/route.ts +import { Humanloop } from "humanloop"; + +if (!process.env.HUMANLOOP_API_KEY) { + throw Error( + "no Humanloop API key provided; add one to your .env.local file with: \`HUMANLOOP_API_KEY=..." + ); +} + +const humanloop = new Humanloop({ + apiKey: process.env.HUMANLOOP_API_KEY, +}); + +interface FeedbackRequest { + id: string; + value: string; +} + +export async function POST(req: Request): Promise { + const feedbackRequest: FeedbackRequest = await req.json(); + + await humanloop.feedback({ + type: "rating", + data_id: feedbackRequest.id, + value: feedbackRequest.value, + }); + + return new Response(); +} +\`\`\` + +This code simply proxies the feedback request through the Next.js server. You should now see feedback buttons on the relevant rows in chat. + +Chat interface with feedback buttons. + +When you click one of these feedback buttons and visit the Prompt in Humanloop, you should see the feedback logged against the log. + +", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/chatgpt-clone-in-nextjs#step-4-add-feedback-buttons", + "title": "Step 4: Add Feedback buttons", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/tutorials/create-your-first-gpt-4-app", + "title": "Tutorials", + }, + ], + "description": "Congratulations! You've now built a working chat interface and used Humanloop to handle interaction with the model provider and log chats. You used a system message (which is invisible to your end user) to make GPT-4 behave like a chess tutor. You also added a way for your app's users to provide feedback which you can track in Humanloop to help improve your models. + +Now that you've seen how to create a simple Humanloop project and build a chat interface on top of it, try visiting the Humanloop project dashboard to view the logs and iterate on your model configs. You can also create experiments to learn which model configs perform best with your users. To learn more about these topics, take a look at our guides below. + +All the code for this project is available on [Github](https://github.com/humanloop/hl-chatgpt-clone-typescript).", + "indexSegmentId": "0", + "slug": "docs/v4/tutorials/chatgpt-clone-in-nextjs#conclusion", + "title": "Conclusion", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "Learn how to create a Prompt in Humanloop using the UI or SDK, version it, and use it to generate responses from your AI models. Prompt management is a key part of the Humanloop platform. + +How to create, version and use a Prompt in Humanloop + +Humanloop acts as a registry of your [Prompts](/docs/prompts) so you can centrally manage all their versions and [Logs](/docs/logs), and evaluate and improve your AI systems. + +This guide will show you how to create a Prompt [in the UI](#create-a-prompt-in-the-ui) or [via the SDK/API](#create-a-prompt-using-the-sdk). + + +**Prerequisite**: A Humanloop account. + +You can create an account now by going to the [Sign up page](https://app.humanloop.com/signup). + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-prompt", + "title": "Create a Prompt", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": " +### Create a Prompt File + +When you first open Humanloop you’ll see your File navigation on the left. Click ‘**+ New**’ and create a **Prompt**. + + + +In the sidebar, rename this file to "Comedian Bot" now or later. + +### Create the Prompt template in the Editor + +The left hand side of the screen defines your Prompt – the parameters such as model, temperature and template. The right hand side is a single chat session with this Prompt. + + + +Click the "**+ Message**" button within the chat template to add a system message to the chat template. + + + +Add the following templated message to the chat template. + +\`\`\` +You are a funny comedian. Write a joke about {{topic}}. +\`\`\` + +This message forms the chat template. It has an input slot called \`topic\` (surrounded by two curly brackets) for an input value that is provided each time you call this Prompt. + +On the right hand side of the page, you’ll now see a box in the **Inputs** section for \`topic\`. + +1. Add a value for\`topic\` e.g. music, jogging, whatever. +2. Click **Run** in the bottom right of the page. + +This will call OpenAI’s model and return the assistant response. Feel free to try other values, the model is _very_ funny. + +You now have a first version of your prompt that you can use. + +### Commit your first version of this Prompt + +1. Click the **Commit** button +2. Put “initial version” in the commit message field +3. Click **Commit** + + + +### View the logs + +Under the Prompt File click ‘Logs’ to view all the generations from this Prompt + +Click on a row to see the details of what version of the prompt generated it. From here you can give feedback to that generation, see performance metrics, open up this example in the Editor, or add this log to a dataset. + + + + + +---", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-prompt#create-a-prompt-in-the-ui", + "title": "Create a Prompt in the UI", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "The Humanloop Python SDK allows you to programmatically set up and version your [Prompts](/docs/prompts) in Humanloop, and log generations from your models. This guide will show you how to create a Prompt using the SDK. + + +**Prerequisite**: A Humanloop SDK Key. + +You can get this from your [Organisation Settings page](https://app.humanloop.com/account/api-keys) if you have the [right permissions](/docs/access-roles). + + + + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + + + + +Continue in the same Python interpreter (where you have run \`humanloop = Humanloop(...)\`). + +Note: Prompts are still called 'projects' in the SDK and versions of Prompts are called 'model configs' + + +### Create the Prompt "project" + +\`\`\`python +project_response = humanloop.projects.create(name="sdk-tutorial") +project_id = project_response.id +\`\`\` + +### Register your version ("model config") + +\`\`\`python +humanloop.model_configs.register( + project_id=project_id, + model="gpt-3.5-turbo", + prompt_template="Write a snappy introduction about {{topic}}:", + temperature=0.8, +) +\`\`\` + +### Go to the App + +Go to the [Humanloop app](https://app.humanloop.com) and you will see your new project as a Prompt with the model config you just created. + + + +You now have a project in Humanloop that contains your model config. You can view your project and invite team members by going to the **Project** page.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-prompt#create-a-prompt-using-the-sdk", + "title": "Create a Prompt using the SDK", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "With the Prompt set up, you can now integrate it into your app by following the [SDK/API integration guide](./generate-and-log-with-the-sdk).", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-prompt#next-steps", + "title": "Next Steps", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Learn how to generate from large language models and log the results in Humanloop, with managed and versioned prompts. + +Use Humanloop to generate from large language models + +A [**Log**](/docs/logs) is created every time a [Prompt](/docs/prompts) is called. The Log contain contains the inputs and the output (the generation) as well as metadata such as which version of the Prompt was used and any associated feedback. + +There are two ways to get your Logs into Humanloop, referred to as 'proxy' and 'async'.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "In one call you can fetch the latest version of a Prompt, generate from the provider, stream the result back and log the result. +Using Humanloop as a proxy is by far the most convenient and way of calling your LLM-based applications.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/generate-and-log-with-the-sdk#proxied", + "title": "Proxied", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "With the async method, you can fetch the latest version of a Prompt, generate from the provider, and log the result in separate calls. This is useful if you want to decouple the generation and logging steps, or if you want to log results from your own infrastructure. It also allows you to have no additional latency or servers on the critical path to your AI features. + + + +The guides in this section instruct you on how to create Logs on Humanloop. Once +this is setup, you can begin to use Humanloop to evaluate and improve your LLM apps.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/generate-and-log-with-the-sdk#async", + "title": "Async", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Learn how to generate completions from a large language model and log the results in Humanloop, with managed and versioned prompts. + +A walkthrough of how to generate completions from a large language model with the prompt managed in Humanloop. + +The Humanloop Python SDK allows you to easily replace your \`openai.Completions.create()\` calls with a \`humanloop.complete()\` call that, in addition to calling OpenAI to get a generation, automatically logs the data to your Humanloop project.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/completion-using-the-sdk", + "title": "Generate completions", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. + + +This guide assumes you're using an OpenAI model. If you want to use other providers or your own model please also look at our [guide to using your own model](./use-your-own-model-provider). + + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/completion-using-the-sdk#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "1. Log in to Humanloop and navigate to the **Dashboard** tab of your project. +2. Ensure that the default environment is in green at the top of the dashboard, the default environment is mapped to your active deployment. If there is no active deployment set, then use the dropdown button for the default environment and select the **Change deployment** option to select one of your existing model configs to use to generate. You also need to confirm the model you config you have deployed is a Completion model. This can be confirmed by clicking on the config in the table and viewing the Endpoint, making sure it says **Complete**. + ", + "indexSegmentId": "0", + "slug": "docs/v4/guides/completion-using-the-sdk#activate-a-model", + "title": "Activate a model", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Now you can use the SDK to generate completions and log the results to your project. + +\`\`\`python +# humanloop.complete_deployed(...) will call the active model config on your project. +# The inputs must match the input of the prompt template in your project. +complete_response = humanloop.complete_deployed( + project="", # change the project name to your project + inputs={"question": "How should I think about competition for my startup?"}, +) + +# A single call to generate may return multiple outputs. +data_id = complete_response.data[0].id +output = complete_response.data[0].output + +# You can also access the raw response from OpenAI. +print(complete_response.provider_responses) +\`\`\` + +Navigate to your project's **Logs** tab in the browser to see the recorded inputs and outputs of your generation. + +🎉 Now that you have generations flowing through your project you can start to log your end user feedback to evaluate and improve your models.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/completion-using-the-sdk#use-the-sdk-to-call-your-model", + "title": "Use the SDK to call your model", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Learn how to generate chat completions from a large language model and log the results in Humanloop, with managed and versioned prompts. + +A walkthrough of how to generate chat completions from a large language model with the prompt managed in Humanloop. + +The Humanloop Python SDK allows you to easily replace your \`openai.ChatCompletions.create()\` calls with a \`humanloop.chat()\` call that, in addition to calling OpenAI to get a response, automatically logs the data to your Humanloop project.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/chat-using-the-sdk", + "title": "Generate chat responses", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. + + +This guide assumes you're using an OpenAI model. If you want to use other providers or your own model please also look at our [guide to using your own model](./use-your-own-model-provider). + + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/chat-using-the-sdk#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "1. Log in to Humanloop and navigate to the **Models** tab of your project. +2. Ensure that the default environment is in green at the top of the dashboard. + The default environment is mapped to your active deployment. + If there is no active deployment set, then use the dropdown button for the default environment and select the **Change deployment** option to select one of your existing model configs to use to generate. You also need to confirm the model you config you have deployed is a Chat model. This can be confirmed by clicking on the config in the table and viewing the Endpoint, making sure it says **Chat**. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/chat-using-the-sdk#activate-a-model", + "title": "Activate a model", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Now you can use the SDK to generate completions and log the results to your project: + +\`\`\`python +# humanloop.chat_deployed(...) will call the active model config on your project. +# The inputs must match the input of the chat template in your project. +chat_response = humanloop.chat_deployed( + project_id="YOUR_PROJECT_ID_HERE", + # inputs required by your chat_template - for example your templated system message. + inputs={"persona": "paul graham from YC"}, + messages=[ + {"role": "user", "content": "How should I think about competition for my startup?"} + ] +) + +# A single call to chat may return multiple outputs. +data_id = chat_response.data[0].id +output = chat_response.data[0].output +print(output) + +# You can also access the raw response from OpenAI. +print(chat_response.provider_responses) +\`\`\` + +Navigate to your project's **Logs** tab in the browser to see the recorded inputs, messages and responses of your chat. + +🎉 Now that you have chat messages flowing through your project you can start to log your end user feedback to evaluate and improve your models.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/chat-using-the-sdk#use-the-sdk-to-call-your-model", + "title": "Use the SDK to call your model", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Learn how to record user feedback on datapoints generated by your large language model using the Humanloop SDK. + +You can record feedback on generations from your users using the Humanloop Python SDK. This allows you to monitor how your generations perform with your users. + +This guide shows how to use the Humanloop SDK to record user feedback on datapoints. This works equivalently for both the completion and chat APIs.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/capture-user-feedback", + "title": "Capture user feedback", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. + +2. Already have integrated \`humanloop.chat()\` or \`humanloop.complete()\` to log generations with the Python or TypeScript SDKs. If not, follow our [guide to integrating the SDK](./generate-and-log-with-the-sdk).", + "indexSegmentId": "0", + "slug": "docs/v4/guides/capture-user-feedback#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "1. Extract the data ID from the \`humanloop.complete_deployed()\` response. + + \`\`\`python + complete_response = humanloop.complete_deployed( + project="", + inputs={"question": "How should I think about competition for my startup?"}, + ) + + data_id = completion.data[0].id + \`\`\` + +2. Call \`humanloop.feedback()\` referencing the saved datapoint ID to record user feedback. + You can also include the source of the feedback when recording it. + + \`\`\` + # You can capture a single piece feedback + humanloop.feedback(data_id=data_id, type="rating", value="good") + + # And you can associate the feedback to a specific user. + humanloop.feedback(data_id=data_id, type="rating", value="good", user="user_123456") + \`\`\` + +The feedback recorded for each datapoint can be viewed in the **Logs** tab of your project. + + + +Different use cases and user interfaces may require different kinds of feedback that need to be mapped to the appropriate end user interaction. There are broadly 3 important kinds of feedback: + +1. **Explicit feedback**: these are purposeful actions to review the generations. For example, ‘thumbs up/down’ button presses. +2. **Implicit feedback**: indirect actions taken by your users may signal whether the generation was good or bad, for example, whether the user ‘copied’ the generation, ‘saved it’ or ‘dismissed it’ (which is negative feedback). +3. **Free-form feedback**: Corrections and explanations provided by the end-user on the generation.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/capture-user-feedback#record-feedback-with-the-datapoint-id", + "title": "Record feedback with the datapoint ID", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "It can also be useful to allow your users to correct the outputs of your model. This is strong feedback signal and can also be considered as ground truth data for finetuning later. + +\`\`\`python +# You can capture text based feedback to record corrections +humanloop.feedback(data_id=data_id, type="correction", value="A user provided completion...") + +# And also include this as part of an array of feedback for a logged datapoint +humanloop.feedback([ + {"data_id": data_id, "type": "rating", "value": "bad"}, + {"data_id": data_id, "type": "correction", "value": "A user provided summary..."}, +]) +\`\`\` + + + +This feedback will also show up within Humanloop, where your internal users can also provide feedback and corrections on logged data to help with evaluation.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/capture-user-feedback#recording-corrections-as-feedback", + "title": "Recording corrections as feedback", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Learn how to upload your historic model data to an existing Humanloop project to warm-start your project. + +Uploading historic model inputs and generations to an existing Humanloop project. + +The Humanloop Python SDK allows you to upload your historic model data to an existing Humanloop project. This can be used to warm-start your project. The data can be considered for feedback and review alongside your new user generated data.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/upload-historic-data", + "title": "Upload historic data", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/upload-historic-data#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Grab your API key from your [Settings page](https://app.humanloop.com/account/api-keys). + +1. Set up your code to first load up your historic data and then log this to Humanloop, explicitly passing details of the model config (if available) alongside the inputs and output: + + \`\`\`python + from humanloop import Humanloop + import openai + + # Initialize Humanloop with your API key + humanloop = Humanloop(api_key="") + + # NB: Add code here to load your existing model data before logging it to Humanloop + + # Log the inputs, outputs and model config to your project - this log call can take batches of data. + log_response = humanloop.log( + project="", + inputs={"question": "How should I think about competition for my startup?"}, + output=output, + config={ + "model": "gpt-4", + "prompt_template": "Answer the following question like Paul Graham from YCombinator: {{question}}", + "temperature": 0.2, + }, + source="sdk", + ) + + # Use the datapoint IDs to associate feedback received later to this datapoint. + data_id = log_response.id + \`\`\` + +2. The process of capturing feedback then uses the returned \`log_id\` as before. + + See our [guide on capturing user feedback](./capture-user-feedback). + +3. You can also log immediate feedback alongside the input and outputs: + \`\`\`python + # Log the inputs, outputs and model config to your project. + log_response = humanloop.log( + project="", + inputs={"question": "How should I think about competition for my startup?"}, + output=output, + config={ + "model": "gpt-4", + "prompt_template": "Answer the following question like Paul Graham from YCombinator: {{question}}", + "temperature": 0.2, + }, + source="sdk", + feedback={"type": "rating", "value": "good"} + ) + \`\`\`", + "indexSegmentId": "0", + "slug": "docs/v4/guides/upload-historic-data#log-historic-data", + "title": "Log historic data", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Integrating Humanloop and running an experiment when using your own models. + +The \`humanloop.complete()\`and \`humanloop.chat()\` call encapsulates the LLM provider calls (for example \`openai.Completions.create()\`), the model-config selection and logging steps in a single unified interface. There may be scenarios that you wish to manage the LLM provider calls directly in your own code instead of relying on Humanloop. + +For example, you may be using an LLM provider that currently is not directly supported by Humanloop such as Hugging Face. + +To support using your own model provider, we provide additional \`humanloop.log()\` and \`humanloop.projects.get_active_config()\` methods in the SDK. + +In this guide, we walk through how to use these SDK methods to log data to Humanloop and run experiments.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/use-your-own-model-provider", + "title": "Logging", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/use-your-own-model-provider#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": " +#### Set up your code to first get your model config from Humanloop, then call your LLM provider to get a completion (or chat response) and then log this, alongside the inputs, config and output: + +\`\`\`python +from humanloop import Humanloop +import openai + +# Initialize Humanloop with your API key +humanloop = Humanloop(api_key="") + +project_id = "" + +config = humanloop.projects.get_active_config(id=project_id).config + +client = openai.OpenAI( + # defaults to os.environ.get("OPENAI_API_KEY") + api_key="", +) + +messages = [ + { + "role": "user", + "content": "Say this is a test", + } +] + +chat_completion = client.chat.completions.create( + messages=messages, + model=config.model, + temperature=config.temperature +) + +# Parse the output from the OpenAI response. +output = chat_completion.choices[0].message.content + +# Log the inputs, outputs and config to your project. +log_response = humanloop.log( + project_id=project_id, + messages=messages + output=output, + config_id=config.id +) + +# Use this ID to associate feedback received later to this datapoint. +data_id = log_response.id +\`\`\` + +#### The process of capturing feedback then uses the returned \`data_id\` as before. + +See our [guide on capturing user feedback](./capture-user-feedback). + +#### You can also log immediate feedback alongside the input and outputs: + +\`\`\` +# Log the inputs, outputs and model config to your project. +log_response = humanloop.log( + project_id=project_id, + messages=messages + output=output, + config_id=config.id, + feedback={"type": "rating", "value": "good"} +) +\`\`\` + + + + +Note that you can also use a similar pattern for non-OpenAI LLM providers. For example, logging results from Hugging Face’s Inference API: + +\`\`\`python +import requests +from humanloop import Humanloop + +# Initialize the SDK with your Humanloop API key +humanloop = Humanloop(api_key="") + +# Make a generation using the Hugging Face Inference API. +response = requests.post( + "https://api-inference.huggingface.co/models/gpt2", + headers={"Authorization": f"Bearer {}"}, + json={ + "inputs": "Answer the following question like Paul Graham from YCombinator:\\n" + "How should I think about competition for my startup?", + "parameters": { + "temperature": 0.2, + "return_full_text": False, # Otherwise, Hugging Face will return the prompt as part of the generation. + }, + }, +).json() + +# Parse the output from the Hugging Face response. + +output = response[0]["generated_text"] + +# Log the inputs, outputs and model config to your project. + +log_response = humanloop.log( + project=project_id, + inputs={"question": "How should I think about competition for my startup?"}, + output=output, + model_config={ + "model": "gpt2", + "prompt_template": "Answer the following question like Paul Graham from YCombinator:\\n{{question}}", + "temperature": 0.2, +}, +) + +\`\`\` + +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v4/guides/use-your-own-model-provider#log-data-to-your-project", + "title": "Log data to your project", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "Learn how to log sequences of LLM calls to Humanloop, enabling you to trace through "sessions" and troubleshoot where your LLM chain went wrong or track sequences of actions taken by your LLM agent. + +This guide explains how to use sequences of LLM calls to achieve a task in Humanloop. Humanloop allows you to trace through "sessions", enabling you to track sequences of actions taken by your LLM agent and troubleshoot where your LLM chain went wrong. + +This guide contains 3 sections. We'll start with an example Python script that makes a series of calls to an LLM upon receiving a user request. In the first section, we'll log these calls to Humanloop. In the second section, we'll link up these calls to a single session so they can be easily inspected on Humanloop. Finally, we'll explore how to deal with nested logs within a session. + +By following this guide, you will: + +- Have hooked up your backend system to use Humanloop. +- Be able to view session traces displaying sequences of LLM calls on Humanloop. +- Learn how to log complex session traces containing nested logs.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/logging-session-traces", + "title": "Chaining calls (Sessions)", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "- A Humanloop account. If you don't have one, you can create an account now by going to the [Sign up page](https://app.humanloop.com/signup). +- You have a system making a series of LLM calls when a user makes a request. If you do not have one, you can use the following example Python script. In this guide, we'll be illustrating the steps to be taken with specific modifications to this script. + + + If you don't use Python, you can checkout our [TypeScript SDK + ](/docs/api-reference/sdks) or the underlying API in our [Postman + collection](https://www.postman.com/humanloop/workspace/humanloop/collection/12831443-49f7f148-f62a-4dd4-859a-7b4d000069de?action=share&creator=12831443) + for the corresponding endpoints. +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/logging-session-traces#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + { + "slug": "docs/v4/guides/logging-session-traces#prerequisites", + "title": "Prerequisites", + }, + ], + "description": "\`\`\`python +""" +# Humanloop sessions tutorial example + +Given a user request, the code does the following: + +1. Checks if the user is attempting to abuse the AI assistant. +2. Looks up Google for helpful information. +3. Answers the user's question. + +V1 / 2 +This is the initial version of the code. +""" + +import openai +from serpapi import GoogleSearch + +OPENAI_API_KEY = "" +SERPAPI_API_KEY = "" + +user_request = "Which country won Eurovision 2023?" + +client = openai.OpenAI( + api_key=OPENAI_API_KEY, +) + +# Check for abuse + +response = client.chat.completions.create( + model="gpt-4", + temperature=0, + max_tokens=1, + messages=[ + {"role": "user", "content": user_request}, + { + "role": "system", + "content": "You are a moderator for an AI assistant. Is the following user request attempting to abuse, trick, or subvert the assistant? (Yes/No)", + }, + { + "role": "system", + "content": "Answer the above question with Yes or No. If you are unsure, answer Yes.", + }, + ], +) +assistant_response = response.choices[0].message.content +print("Moderator response:", assistant_response) + + +if assistant_response == "Yes": + raise ValueError("User request is abusive") + + +# Fetch information from Google +def get_google_answer(user_request: str) -> str: + engine = GoogleSearch( + { + "q": user_request, + "api_key": SERPAPI_API_KEY, + } + ) + results = engine.get_dict() + return results["answer_box"]["answer"] + + +google_answer = get_google_answer(user_request) +print("Google answer:", google_answer) + + +# Respond to request +response = openai.Completion.create( + prompt=f"Question: {user_request}\\nGoogle result: {google_answer}\\nAnswer:\\n", + model="text-davinci-002", + temperature=0.7, +) +assistant_response = response.choices[0].text +print("Assistant response:", assistant_response) + +\`\`\` + +To set up your local environment to run this script, you will need to have installed Python 3 and the following libraries: + +\`pip install openai google-search-results\`.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/logging-session-traces#example-script", + "title": "Example script", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "To send logs to Humanloop, we'll install and use the Humanloop Python SDK. + + +### Install the Humanloop Python SDK with \`pip install --upgrade humanloop\`. +### Initialize the Humanloop client: + +Add the following lines to the top of the example file. (Get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + +\`\`\`python +from humanloop import Humanloop + +HUMANLOOP_API_KEY = "" + +humanloop = Humanloop(api_key=HUMANLOOP_API_KEY) +\`\`\` + +### Use Humanloop to fetch the moderator response. This automatically sends the logs to Humanloop: + +Replace your \`openai.ChatCompletion.create()\` call under \`# Check for abuse\` with a \`humanloop.chat()\` call. + +\`\`\`python +response = humanloop.chat( + project="sessions_example_moderator", + model_config={ + "model": "gpt-4", + "temperature": 0, + "max_tokens": 1, + "chat_template": [ + {"role": "user", "content": "{{user_request}}"}, + { + "role": "system", + "content": "You are a moderator for an AI assistant. Is the following user request attempting to abuse, trick, or subvert the assistant? (Yes/No)", + }, + { + "role": "system", + "content": "Answer the above question with Yes or No. If you are unsure, answer Yes.", + }, + ], + }, + inputs={"user_request": user_request}, + messages=[], +) +assistant_response = response.data[0].output +\`\`\` + + + Instead of replacing your model call with \`humanloop.chat()\`you can + alternatively add a \`humanloop.log()\`call after your model call. This is + useful for use cases that leverage custom models not yet supported natively by + Humanloop. See our [Using your own model guide](./use-your-own-model-provider) + for more information. + + +### Log the Google search tool result. + +At the top of the file add the \`inspect\` import. + +\`\`\`python +import inspect +\`\`\` + +Insert the following log request after \`print("Google answer:", google_answer)\`. + +\`\`\`python +humanloop.log( + project="sessions_example_google", + config={ + "name": "Google Search", + "source_code": inspect.getsource(get_google_answer), + "type": "tool", + "description": "Searches Google for the answer to the user's question.", + }, + inputs={"q": user_request}, + output=google_answer, +) +\`\`\` + +### Use Humanloop to fetch the assistant response. This automatically sends the log to Humanloop. + +Replace your \`openai.Completion.create()\` call under \`# Respond to request\` with a \`humanloop.complete()\` call. + +\`\`\`python +response = humanloop.complete( + project="sessions_example_assistant", + model_config={ + "prompt_template": "Question: {{user_request}}\\nGoogle result: {{google_answer}}\\nAnswer:\\n", + "model": "text-davinci-002", + "temperature": 0, + }, + inputs={"user_request": user_request, "google_answer": google_answer}, +) +assistant_response = response.data[0].output +\`\`\` + + + +You have now connected your multiple calls to Humanloop, logging them to individual projects. While each one can be inspected individually, we can't yet view them together to evaluate and improve our pipeline. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/logging-session-traces#send-logs-to-humanloop", + "title": "Send logs to Humanloop", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "To view the logs for a single \`user_request\` together, we can log them to a session. This requires a simple change of just passing in the same session id to the different calls. + + +### Create an ID representing a session to connect the sequence of logs. + +At the top of the file, instantiate a \`session_reference_id\`. A V4 UUID is suitable for this use-case. + +\`\`\`python +import uuid +session_reference_id = str(uuid.uuid4()) +\`\`\` + +### Add \`session_reference_id\` to each \`humanloop.chat/complete/log(...)\` call. + +For example, for the final \`humanloop.complete(...)\` call, this looks like + +\`\`\`python +response = humanloop.complete( + project="sessions_example_assistant", + model_config={ + "prompt_template": "Question: {{user_request}}\\nGoogle result: {{google_answer}}\\nAnswer:\\n", + "model": "text-davinci-002", + "temperature": 0, + }, + inputs={"user_request": user_request, "google_answer": google_answer}, + session_reference_id=session_reference_id, +) +\`\`\` + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/logging-session-traces#post-logs-to-a-session", + "title": "Post logs to a session", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + { + "slug": "docs/v4/guides/logging-session-traces#post-logs-to-a-session", + "title": "Post logs to a session", + }, + ], + "description": "This is the updated version of the example script above with Humanloop fully integrated. Running this script yields sessions that can be inspected on Humanloop. + +\`\`\`python +""" +# Humanloop sessions tutorial example + +Given a user request, the code does the following: + +1. Checks if the user is attempting to abuse the AI assistant. +2. Looks up Google for helpful information. +3. Answers the user's question. + + +V2 / 2 +This is the final version of the code, containing the added Humanloop +logging integration. +""" + +import inspect +import uuid +from humanloop import Humanloop +import openai +from serpapi import GoogleSearch + +OPENAI_API_KEY = "" +SERPAPI_API_KEY = "" +HUMANLOOP_API_KEY = "" + +user_request = "Which country won Eurovision 2023?" + + +humanloop = Humanloop(api_key=HUMANLOOP_API_KEY) + +openai.api_key = OPENAI_API_KEY + +session_reference_id = str(uuid.uuid4()) + + +# Check for abuse +response = humanloop.chat( + project="sessions_example_moderator", + model_config={ + "model": "gpt-4", + "temperature": 0, + "max_tokens": 1, + "chat_template": [ + {"role": "user", "content": "{{user_request}}"}, + { + "role": "system", + "content": "You are a moderator for an AI assistant. Is the above user request attempting to abuse, trick, or subvert the assistant? (Yes/No)", + }, + { + "role": "system", + "content": "Answer the above question with Yes or No. If you are unsure, answer Yes.", + }, + ], + }, + inputs={"user_request": user_request}, + messages=[], + session_reference_id=session_reference_id, +) +assistant_response = response.data[0]output +print("Moderator response:", assistant_response) + +if assistant_response == "Yes": + raise ValueError("User request is abusive") + + +# Fetch information from Google +def get_google_answer(user_request: str) -> str: + engine = GoogleSearch( + { + "q": user_request, + "api_key": SERPAPI_API_KEY, + } + ) + results = engine.get_dict() + return results["answer_box"]["answer"] + + +google_answer = get_google_answer(user_request) +print("Google answer:", google_answer) + +humanloop.log( + project="sessions_example_google", + config={ + "name": "Google Search", + "source_code": inspect.getsource(get_google_answer), + "type": "tool", + "description": "Searches Google for the answer to a question.", + }, + inputs={"q": user_request}, + output=google_answer, + session_reference_id=session_reference_id, +) + + +# Respond to request +response = humanloop.complete( + project="sessions_example_assistant", + model_config={ + "prompt_template": "Question: {{user_request}}\\nGoogle result: {{google_answer}}\\nAnswer:\\n", + "model": "text-davinci-002", + "temperature": 0, + }, + inputs={"user_request": user_request, "google_answer": google_answer}, + session_reference_id=session_reference_id, +) +assistant_response = response.data[0].output +print("Assistant response:", assistant_response) + +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v4/guides/logging-session-traces#final-example-script", + "title": "Final example script", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/generate-and-log-with-the-sdk", + "title": "Generate and Log", + }, + ], + "description": "A more complicated trace involving nested logs, such as those recording an Agent's behaviour, can also be logged and viewed in Humanloop. + +First, post a log to a session, specifying both \`session_reference_id\` and \`reference_id\`. Then, pass in this \`reference_id\` as \`parent_reference_id\` in a subsequent log request. This indicates to Humanloop that this second log should be nested under the first. + +\`\`\`python +parent_log_reference_id = str(uuid.uuid4()) + +parent_response = humanloop.log( + project="sessions_example_assistant", + config=config, + messages=messages, + inputs={"user_request": user_request}, + output=assistant_response, + session_reference_id=session_reference_id, + reference_id=parent_log_reference_id, +) + +child_response = humanloop.log( + project="sessions_example_assistant", + config=config, + messages=messages, + inputs={"user_request": user_request}, + output=assistant_response, + session_reference_id=session_reference_id, + parent_reference_id=parent_log_reference_id, +) +\`\`\` + +3 logged datapoints within a session, with the second and third nested under the first. + +**Deferred output population** + +In most cases, you don't know the output for a parent log until all of its children have completed. For instance, the root-level Agent will spin off multiple LLM requests before it can retrieve an output. To support this case, we allow logging without an output. The output can then be updated after the session is complete with a separate \`humanloop.logs_api.update_by_reference_id(reference_id, output)\` call. + +\`\`\`python +session_reference_id = uuid.uuid4().hex +parent_reference_id = uuid.uuid4().hex + +# Log parent +log_response = humanloop.log( + project="sessions_example_deferred_log", + inputs={"input": "parent"}, + source="sdk", + config={ + "model": "gpt-3.5-turbo", + "max_tokens": -1, + "temperature": 0.7, + "prompt_template": "A prompt template", + "type": "model", + }, + session_reference_id=session_reference_id, + reference_id=parent_reference_id, +) + +# Other processing and logging here, yielding a final output. +output = "updated parent output" + +# Logging of output once it has been calculated. +update_log_response = humanloop.logs.update_by_ref( + reference_id=parent_reference_id, + output=output, +) +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v4/guides/logging-session-traces#nesting-logs-within-a-session-extension", + "title": "Nesting logs within a session [Extension]", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Learn how to set up and use Humanloop's evaluation framework to test and track the performance of your prompts. + +Humanloop's evaluation framework allows you to test and track the performance of models in a rigorous way. + +A key part of successful prompt engineering and deployment for LLMs is a robust evaluation framework. In this section we provide guides for how to set up Humanloop's evaluation framework in your projects. + +The core entity in the Humanloop evaluation framework is an **evaluator** - a function you define which takes an LLM-generated log as an argument and returns an **evaluation**. The evaluation is typically either a boolean or a number, indicating how well the model performed according to criteria you determine based on your use case.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Currently, you can define your evaluators in two different ways: + +- **Python** - using our in-browser editor, define simple Python functions to act as evaluators +- **LLM** - use language models to evaluate themselves! Our evaluator editor allows you to define a special-purpose prompt which passes data from the underlying log to a language model. This type of evaluation is particularly useful for more subjective evaluation such as verifying appropriate tone-of-voice or factuality given an input set of facts.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#types", + "title": "Types", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Evaluation is useful for both testing new model configs as you develop them and for monitoring live deployments that are already in production. + +To handle these different use cases, there are two distinct modes of evaluator - **online** and **offline**.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#modes-monitoring-vs-testing", + "title": "Modes: Monitoring vs. testing", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#modes-monitoring-vs-testing", + "title": "Modes: Monitoring vs. testing", + }, + ], + "description": "Online evaluators are for use on logs generated in your project, including live in production. Typically, they are used to monitor deployed model performance over time. + +Online evaluators can be set to run automatically whenever logs are added to a project. The evaluator takes the \`log\` as an argument.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#online", + "title": "Online", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#modes-monitoring-vs-testing", + "title": "Modes: Monitoring vs. testing", + }, + ], + "description": "Offline evaluators are for use with predefined test [**datasets**](./datasets) in order to evaluate models as you iterate in your prompt engineering workflow, or to test for regressions in a CI environment. + +A test dataset is a collection of **datapoints**, which are roughly analogous to unit tests or test cases in traditional programming. Each datapoint specifies inputs to your model and (optionally) some target data. + +When you run an offline evaluation, Humanloop iterates through each datapoint in the dataset and triggers a fresh LLM generation using the inputs of the testcase and the model config being evaluated. For each test case, your evaluator function will be called, taking as arguments the freshly generated \`log\` and the \`testcase\` datapoint that gave rise to it. Typically, you would write your evaluator to perform some domain-specific logic to determine whether the model-generated \`log\` meets your desired criteria (as specified in the datapoint 'target').", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#offline", + "title": "Offline", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Conceptually, evaluation runs have two components: + +1. Generation of logs from the datapoints +2. Evaluating those logs. + +Using the Evaluations API, Humanloop offers the ability to generate logs either within the Humanloop runtime, or self-hosted. Similarly, evaluations of the logs can be performed in the Humanloop runtime (using evaluators that you can define in-app) or self-hosted (see our [guide on self-hosted evaluations](./self-hosted-evaluations)). + +In fact, it's possible to mix-and-match self-hosted and Humanloop-runtime generations and evaluations in any combination you wish. When creating an evaluation via the API, set the \`hl_generated\` flag to \`False\` to indicate that you are posting the logs from your own infrastructure (see our [guide on evaluating externally-generated logs](./evaluating-externally-generated-logs)). Include an evaluator of type \`External\` to indicate that you will post evaluation results from your own infrastructure. You can include multiple evaluators on any run, and these can include any combination of \`External\` (i.e. self-hosted) and Humanloop-runtime evaluators. + +--- + +title: Evaluating LLM Applications +authors: ["Peter Hayes"] +type: Blog +date: 2024-02-06 +draft: false +published: true +tags: ["llm", "gpt-4", "evals"] + +summary: +An overview of evaluating LLM applications. The emerging evaluation framework, +parallels to traditional software testing and some guidance on best practices.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#humanloop-hosted-vs-self-hosted", + "title": "Humanloop-hosted vs. self-hosted", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "An ever-increasing number of companies are using large language models (LLMs) to +transform both their product experiences and internal operations. These kinds of +foundation models represent a new computing platform. The process of +[prompt engineering](https://humanloop.com/blog/prompt-engineering-101) is +replacing aspects of software development and the scope of what software can +achieve is rapidly expanding. + +In order to effectively leverage LLMs in production, having confidence in how +they perform is paramount. This represents a unique challenge for most companies +given the inherent novelty and complexities surrounding LLMs. Unlike traditional +software and non-generative machine learning (ML) models, evaluation is +subjective, hard to automate and the risk of the system going embarrassingly +wrong is higher. + +This post provides some thoughts on evaluating LLMs and discusses some emerging +patterns I've seen work well in practice from experience with thousands of teams +deploying LLM applications in production.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#thumbnail-blogevaluating-llm-appsevalllmappsthumbnail2png", + "title": "thumbnail: /blog/evaluating-llm-apps/EvalLLMAppsThumbnail2.png", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "It’s important to first understand the basic makeup of what we are evaluating +when working with LLMs in production. As the models get increasingly more +powerful, a significant amount of effort is spent trying to give the model the +appropriate context and access required to solve a task. + + + +For the current generation of models, at the core of any LLM app is usually some +combination of the following components: + +- **LLM model** - the core reasoning engine; an API into OpenAI, Anthropic, + Google, or open source alternatives like + [Mistral](https://mistral.ai/news/mixtral-of-experts/). +- **Prompt template** - the boilerplate instructions to your model, which are + shared between requests. This is generally versioned and managed like code + using formats like the + [.prompt](https://docs.humanloop.com/docs/prompt-file-format) file. +- **Data sources** - to provide the relevant context to the model; often + referred to as retrieval augmented generation (RAG). Examples being + traditional relational databases, graph databases, and + [vector databases](https://docs.humanloop.com/docs/setup-semantic-search). +- **Memory** - like a data source, but that builds up a history of previous + interactions with the model for re-use. +- **Tools** - provides access to actions like API calls and code execution + empowering the model to interact with external systems where appropriate. +- **Agent control flow** - some form of looping logic that allows the model to + make multiple generations to solve a task before hitting some stopping + criteria. +- **Guardrails** - a check that is run on the output of the model before + returning the output to the user. This can be simple logic, for example + looking for certain keywords, or another model. Often triggering fallback to + human-in-the-loop workflows", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#llms-are-not-all-you-need", + "title": "LLMs are not all you need", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#llms-are-not-all-you-need", + "title": "LLMs are not all you need", + }, + ], + "description": "These individual components represent a large and unique design space to +navigate. The configuration of each one requires careful consideration; it's no +longer just strictly prompt engineering. + +For example, take the vector database - now a mainstay for the problem of +providing the relevant chunks of context to the model, for a particular query, +from a larger corpus of documents. There is a near infinite number of open or +closed source vector stores to choose from. Then there is the embedding model +(that also has its own design choices), retrieval technique, similarity metric, +how to chunk your documents, how to sync your vector store... and the list goes +on. + +Not only that, but there are often complex interactions between these components +that are hard to predict. For example, maybe the performance of your prompt +template is weirdly sensitive to the format of the separator tokens you forgot +to strip when chunking your documents in the vector database (a real personal +anecdote). + +Furthermore, we're seeing applications that have multiple specialist blocks of +these components chained together to solve a task. This all adds to the +challenge of evaluating the resulting complex system. Specialist tooling is +increasingly a necessity to help teams build robust applications. + +Like for testing in traditional software development, the goal of a good LLM +evaluation framework is to provide confidence that the system is working as +expected and also transparency into what might be causing issues when things go +wrong. Unlike traditional software development, a significant amount of +experimentation and collaboration is required when building with LLMs. From +prompt engineering with domain experts, to tool integrations with engineers. A +systematic way to track progress is required.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#llm-apps-are-complex-systems", + "title": "LLM apps are complex systems", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "A large proportion of teams now building great products with LLMs aren't +experienced ML practitioners. Conveniently many of the goals and best practices +from software development are broadly still relevant when thinking about LLM +evals.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#take-lessons-from-traditional-software", + "title": "Take lessons from traditional software", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#take-lessons-from-traditional-software", + "title": "Take lessons from traditional software", + }, + ], + "description": "Competent teams will traditionally set up robust test suites that are run +automatically against every system change before deploying to production. This +is a key aspect of continuous integration (CI) and is done to protect against +regressions and ensure the system is working as the engineers expect. Test +suites are generally made up of 3 canonical types of tests: unit, integration +and end-to-end. + + + +- **Unit** - very numerous, target a specific atom of code and are fast to run. +- **Integration** - less numerous, cover multiple chunks of code, are slower to + run than unit tests and may require mocking external services. +- **End-to-end** - emulate the experience of an end UI user or API caller; they + are slow to run and oftentimes need to interact with a live version of the + system. + +The most effective mix of test types for a given system often sparks debate. +Yet, the role of automated testing as part of the deployment lifecycle, +alongside the various trade-offs between complexity and speed, remain valuable +considerations when working with LLMs.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#automation-and-continuous-integration-is-still-the-goal", + "title": "Automation and continuous integration is still the goal", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#take-lessons-from-traditional-software", + "title": "Take lessons from traditional software", + }, + ], + "description": "There are however a number of fundamental differences with LLM native products +when it comes to this type of testing. Of the test types, the most difficult to +transfer over to LLMs is the unit test because of: + +- **Randomness** - LLMs produce probabilities over words which can result in + random variation between generations for the same prompt. Certain + applications, like task automation, require deterministic predictions. Others, + like creative writing, demand diversity. +- **Subjectivity** - we oftentimes want LLMs to produce natural human-like + interactions. This requires more nuanced approaches to evaluation because of + the inherent subjectivity of the correctness of outputs, which may depend on + context or user preferences. +- **Cost and latency** - given the computation involved, running SOTA LLMs can + come with a significant cost and tend to have relatively high latency; + especially if configured as an agent that can take multiple steps. +- **Scope** - LLMs are increasingly capable of solving broader less well-defined + tasks, resulting in the scope of what we are evaluating often being a lot more + open-ended than in traditional software applications. + +As a result, the majority of automation efforts in evaluating LLM apps take the +form of integration and end-to-end style tests and should be managed as such +within CI pipelines.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#unit-tests-are-tricky-for-llms", + "title": "Unit tests are tricky for LLMs", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#take-lessons-from-traditional-software", + "title": "Take lessons from traditional software", + }, + ], + "description": "There is also the important practice of monitoring the system in production. +Load and usage patterns in the wild can be unexpected and lead to bugs. +Traditional observability solutions like [Datadog](https://www.datadoghq.com/) +and [New Relic](https://newrelic.com/) monitor the health of the system and +provide alerts when things go wrong; usually based on simple heuristics and +error codes. This tends to fall short when it comes to LLMs. The more capable +and complex the system, the harder it can be to determine something actually +went wrong and the more important observability and traceability is. + +Furthermore, one of the promises of building with LLMs is the potential to more +rapidly intervene and experiment. By tweaking instructions you can fix issues +and improve performance. Another advantage is that less technical teams can be +more involved in building; the +[makeup of the teams](https://humanloop.com/blog/how-to-build-the-right-team-for-generative-ai) +is evolving. This impacts what's needed from an observability solution in this +setting. A tighter integration between observability data and the development +environment to make changes is more beneficial, as well as usability for +collaborating with product teams and domain experts outside of engineering. This +promise of more rapid and sometimes non-technical iteration cycles also +increases the importance of robust regression testing. + +Before delving more into the stages of evaluation and how they relate to +existing CI and observability concepts, it's important to understand more about +the different types of evaluations in this space.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#observability-needs-to-evolve", + "title": "Observability needs to evolve", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "When evaluating one or more components of an LLM block, different types of +evaluations are appropriate depending on your goals, the complexity of the task +and available resources. Having good coverage over the components that are +likely to have an impact over the overall quality of the system is important. + +These different types can be roughly characterized by the return type and the +source of, as well as the criteria for, the judgment required.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#types-of-evaluation-can-vary-significantly", + "title": "Types of evaluation can vary significantly", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#types-of-evaluation-can-vary-significantly", + "title": "Types of evaluation can vary significantly", + }, + ], + "description": "The most common judgment return types are familiar from traditional data science +and machine learning frameworks. From simple to more complex: + +- **Binary** - involves a yes/no, true/false, or pass/fail judgment based on + some criteria. +- **Categorical** - involves more than two categories; for exampling adding an + abstain or maybe option to a binary judgment. +- **Ranking** - the relative quality of output from different samples or + variations of the model are being ranked from best to worst based on some + criteria. Preference based judgments are often used in evaluating the quality + of a ranking. +- **Numerical** - involves a score, a percentage, or any other kind of numeric + rating. +- **Text** - a simple comment or a more detailed critique. Often used when a + more nuanced or detailed evaluation of the model's output is required. +- **Multi-task** - combines multiple types of judgment simultaneously. For + example, a model's output could be evaluated using both a binary rating and a + free-form text explanation. + +Simple individual judgments can be easily aggregated across a dataset of +multiple examples using well known metrics. For example, for classification +problems, [precision](https://en.wikipedia.org/wiki/Accuracy_and_precision), +[recall](https://en.wikipedia.org/wiki/Precision_and_recall) and +[F1](https://en.wikipedia.org/wiki/F-score) are typical choices. For rankings, +there are metrics like +[NDCG](https://en.wikipedia.org/wiki/Discounted_cumulative_gain), +[Elo ratings](https://en.wikipedia.org/wiki/Elo_rating_system) and +[Kendall's Tau](https://en.wikipedia.org/wiki/Kendall_rank_correlation_coefficient). +For numerical judgments there are variations of the +[Bleu score](https://blog.modernmt.com/understanding-mt-quality-bleu-scores/). + +I find that in practice binary and categorical types generally cover the +majority of use cases. They have the added benefit of being the most straight +forward to source reliably. The more complex the judgment type, the more +potential for ambiguity there is and the harder it becomes to make inferences.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#judgment-return-types-are-best-kept-simple", + "title": "Judgment return types are best kept simple", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#types-of-evaluation-can-vary-significantly", + "title": "Types of evaluation can vary significantly", + }, + ], + "description": "Sourcing judgments is an area where there are new and evolving patterns around +foundation models like LLMs. At Humanloop, we've standardised around the +following canonical sources: + +- **Heuristic/Code** - using simple deterministic rules based judgments against + attributes like cost, token usage, latency, regex rules on the output, etc. + These are generally fast and cheap to run at scale. +- **Model (or 'AI')** - using other foundation models to provide judgments on + the output of the component. This allows for more qualitative and nuanced + judgments for a fraction of the cost of human judgments. +- **Human** - getting gold standard judgments from either end users of your + application, or internal domain experts. This can be the most expensive and + slowest option, but also the most reliable. + + +![](https://humanloop.com/blog/evaluating-llm-apps/LLMEvals.jpg) + + +Model judgments in particular are increasingly promising and an active research +area. The paper [Judging LLM-as-a-Judge](https://arxiv.org/abs/2306.05685) +demonstrates that an appropriately prompted GPT-4 model achieves over 80% +agreement with human judgments when rating LLM model responses to questions on a +scale of 1-10; that's equivalent to the levels of agreement between humans. + +Such evaluators can be equally effective in evaluating the important non-LLM +components, such as the retrieval component in RAG. In +[Automated Evaluation of Retrieval Augmented Generation](https://arxiv.org/pdf/2309.15217.pdf) +a GPT-3 model is tasked with extracting the most relevant sentences from the +retrieved context. A numeric judgment for relevance is then computed using the +ratio of the number of relevant to irrelevant sentences, which was also found to +be highly correlated with expert human judgments. + +However, there are risks to consider. The same reasons that evaluating LLMs is +hard apply to using them as evaluators. Recent research has also shown LLMs to +have biases that can contaminate the evaluation process. In +[Benchmarking Cognitive Biases in Large Language Models as Evaluators](https://arxiv.org/pdf/2309.17012.pdf) +they measure 6 cognitive biases across 15 different LLM variations. They find +that simple details such as the order of the results presented to the model can +have material impact on the evaluation. + + +![](https://humanloop.com/blog/evaluating-llm-apps/BiasLLMEvals.png) + + + +The takeaway here is that it's important to still experiment with performance on +your target use cases before trusting LLM evaluators - evaluate the evaluator! +All the usual prompt engineering techniques such as including few-shot examples +are just as applicable here. In addition, fine-tuning specialist, more +economical evaluator models using human judgements can be a real unlock. + +I believe teams should consider shifting more of their human judgment efforts up +a level to focus on helping improve model evaluators. This will ultimately lead +to a more scalable, repeatable and cost-effective evaluation process. As well as +one where the human expertise can be more targeted on the most important high +value scenarios.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#model-sourced-judgments-are-increasingly-promising", + "title": "Model sourced judgments are increasingly promising", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#types-of-evaluation-can-vary-significantly", + "title": "Types of evaluation can vary significantly", + }, + ], + "description": "The actual criteria for the judgment is what tends to be most specific to the +needs of a particular use case. This will either be defined in code, in a prompt +(or in the parameters of a model), or just in guidelines depending on whether +it's a code, model or human based evaluator. + +There are lots of broad themes to crib from. Humanloop for example provides +templates for popular use cases and best practises, with the ability to +experiment and customize. There are categories like general performance +(latency, cost and error thresholds), behavioural (tone of voice, writing style, +diversity, factuality, relevance, etc.), ethical (bias, safety, privacy, etc.) +and user experience (engagement, satisfaction, productivity, etc.). + +Unsurprisingly, starting with a small set of evaluators that cover the most +important criteria is wise. These can then be adapted and added to over time as +requirements are clarified and new edge cases uncovered. Tradeoffs are often +necessary between these criteria. For example, a more diverse set of responses +might be more engaging, but also more likely to contain errors and higher +quality can often come at a cost in terms of latency. + +Thinking about these criteria upfront for your project can be a good hack to +ensure your team deeply understand the end goals of the application.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#judgment-criteria-is-where-most-of-the-customisation-happens", + "title": "Judgment criteria is where most of the customisation happens", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "As discussed with the distinction between CI and observability; different stages +of the app development lifecycle will have different evaluation needs. I've +found this lifecycle to naturally still consist of some sort of planning and +scoping exercise, followed by cycles of development, deployment and monitoring. + +These cycles are then repeated during the lifetime of the LLM app in order to +intervene and improve performance. The stronger the teams, the more agile and +continuous this process tends to be. + +Development here will include both the typical app development; orchestrating +your LLM blocks in code, setting up your UIs, etc, as well more LLM specific +interventions and experimentation; including prompt engineering, context +tweaking, tool integration updates and fine-tuning - to name a few. Both the +choices and quality of interventions to +[optimize your LLM performance](https://humanloop.com/blog/optimizing-llms) are +much improved if the right evaluation stages are in place. It facilitates a more +data-driven, systematic approach. + +From my experience there are 3 complementary stages of evaluation that are +highest ROI in supporting rapid iteration cycles of the LLM block related +interventions: + +1. **Interactive** - it's useful to have an interactive playground-like editor + environment that allows rapid experimentation with components of the model + and provides immediate evaluator feedback. This usually works best on a + relatively small number of scenarios. This allows teams (both technical and + non-technical) to quickly explore the design space of the LLM app and get an + informal sense of what works well. + +2. **Batch offline** - benchmarking or regression testing the most promising + variations over a larger curated set of scenarios to provide a more + systematic evaluation. Ideally a range of different evaluators for different + components of the app can contribute to this stage, some comparing against + gold standard expected results for the task. This can fit naturally into + existing CI processes. + +3. **Monitoring online** - post deployment, real user interactions can be + evaluated continuously to monitor the performance of the model. This process + can drive alerts, gather additional scenarios for offline evaluations and + inform when to make further interventions. Staging deployments through + internal environments, or beta testing with selected cohorts of users first, + are usually super valuable. + + +![](https://humanloop.com/blog/evaluating-llm-apps/EvalsStages.png) + + + +It's usually necessary to co-evolve to some degree the evaluation framework +alongside the app development as more data becomes available and requirements +are clarified. The ability to easily version control and share across stages and +teams both the evaluators and the configuration of your app can significantly +improve the efficiency of this process.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#different-stages-of-evaluation-are-necessary", + "title": "Different stages of evaluation are necessary", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Lack of access to high quality data will undermine any good evaluation +framework. A good evaluation dataset should ideally be representative of the +full distribution of behaviours you expect to see and care about in production, +considering both the inputs and the expected outputs. It's also important to +keep in mind that coverage of the expected behaviours for the individual +components of your app is important. + +Here are some strategies that I think are worth considering: leveraging +public/academic benchmarks, collecting data from your own systems and creating +synthetic data.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#high-quality-datasets-are-still-paramount", + "title": "High quality datasets are still paramount", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#high-quality-datasets-are-still-paramount", + "title": "High quality datasets are still paramount", + }, + ], + "description": "There are well cited academic benchmarks that have been curated to evaluate the +general capabilities of LLMs. For AI leaders, these can be helpful to reference +when choosing which base models to build with originally, or to graduate to when +things like scale and cost start to factor in. For example the +[Large Model Systems Organizations](https://lmsys.org/) maintains +[Chatbot Arena](https://chat.lmsys.org/) where they have crowd-sourced over 200k +human preferences votes to rank LLMs, both commercial and open source, as well +as recording the performance on academic multi-task reasoning benchmarks like +[MMLU](https://arxiv.org/abs/2009.03300). + + +![](https://humanloop.com/blog/evaluating-llm-apps/ChatbotArena.png) + + +Another great resource in the same vein is +[Hugging Face datasets](https://huggingface.co/docs/datasets/index), where they +also maintain a leaderboard of how all the latest OSS models perform across a +range of tasks using the +[Eleuther LLM evaluation harness library](https://github.com/EleutherAI/lm-evaluation-harness). + + +![](https://humanloop.com/blog/evaluating-llm-apps/HuggingFaceLeaderBoard.png) + + +More domain specific academic datasets may also be particularly relevant for +your target use case and can be used to warm start your evaluation efforts; for +example if you were working on +[medical related tasks](https://huggingface.co/datasets/AdaptLLM/medicine-tasks).", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#pay-attention-to-academic-and-public-benchmarks", + "title": "Pay attention to academic and public benchmarks", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#high-quality-datasets-are-still-paramount", + "title": "High quality datasets are still paramount", + }, + ], + "description": "Arguably the best form of dataset comes from real user interactions. Useful +sources of this kind of data are actually the interactive and monitoring stages +discussed above. + +With access to an interactive environment for prompt engineering (or a test +version of your application), internal domain experts can synthesize examples of +the kinds of interactions they expect to see in production. These interactions +should be recorded throughout the course of initial experimentation to form a +benchmark dataset for subsequent offline evaluations. + +For leveraging real end-user interactions, a tighter integration between +observability data and the development environment that manages evaluations +makes it easier to curate real scenarios into your benchmark datasets over time. + + +![](https://humanloop.com/blog/evaluating-llm-apps/HLEditor.png) + + +Something worth careful consideration to maximise the impact of end-user +interactions is to set up your application to +[capture rich feedback](https://docs.humanloop.com/docs/capture-user-feedback-using-the-sdk) +from users form the start. This is an example of an online evaluator that relies +on human judgments, which can be used to filter for particularly interesting +scenarios to add to benchmark datasets. + +Feedback doesn't need to be only explicit from the user; it can be provided +implicitly in the way they interact with the system. For example, +[github copilot reportedly](https://thakkarparth007.github.io/copilot-explorer/posts/copilot-internals.html#secret-sauce-3-telemetry) +monitors whether the code suggestion was accepted at various time increments +after the suggestion was made, as well as whether the user made any edits to the +suggestion before accepting it.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#real-product-interactions-are-the-most-valuable-source-of-data", + "title": "Real product interactions are the most valuable source of data", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/overview#high-quality-datasets-are-still-paramount", + "title": "High quality datasets are still paramount", + }, + ], + "description": "Once you have a small amount of high quality data leveraging LLMs to generate +additional input examples can help bootstrap to larger datasets. By utilizing +few-shot prompting and including a representative subset of your existing data +within the prompt, you can guide the synthesizer model to generate a wide range +of supplementary examples. + +A quick pointer here is to prompt the model to generate a batch of examples at a +time, rather than one at a time, such that you can encourage characteristics +like diversity between examples. Or, similarly, feed previously generated +examples back into your prompt. For instance, for a customer service system, +prompts could be designed to elicit responses across a variety of emotional +states, from satisfaction to frustration. + +A specific example of this is model red-teaming, or synthesizing adversarial +examples. This is where you use the synthesizer model to generate examples that +are designed to break the system. For example, in +[Red Teaming Language Models with Language Models](https://arxiv.org/abs/2202.03286), +they uncover offensive replies, data leakage and other vulnerabilities in an LLM +chat-bot using variations of few-shot prompts to generate adversarial questions. +They also leverage a pre-trained offensive classifier to help automate their +evaluation process. However, it is worth noting they too point out the +limitations caused by LLM biases that limits diversity. They ultimately need to +generate and filter hundreds of thousands of synthetic examples. + + +![](https://humanloop.com/blog/evaluating-llm-apps/RedLM.png) + + +As with LLM evaluators, all the same rigour and tools should be applied to +evaluating the quality of the synthetic data generator model before trusting it.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#synthetic-data-is-on-the-rise", + "title": "Synthetic data is on the rise", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "This is a rapidly evolving area of research and practice. Here's a few areas +that I'm particularly excited about working more on at Humanloop over the coming +months that we'll touch on further in future posts: + +- Increasing adoption of AI based evaluators for all components of these + systems, with improved support for fine-tuning and specialisation happening at + this level. The existence of OpenAI's + [Superalignment team](https://openai.com/blog/introducing-superalignment) + shows there is focus here on the research front. + +- Supporting more multi-modal applications deployed in production, with more + text, image, voice and even video based models coming online. + +- More complex agent-based workflows and experimenting with more multi-agent + setups and how evaluation needs to adapt to supervise these systems. + +- Moving towards more end-to-end optimization for the components of these + complex systems. A robust set of evaluators can provide an objective to + measure performance, coupled with data synthesization to simulate the system. + +At Humanloop, we've built an integrated solution for managing the development +lifecycle of LLM apps from first principles, which includes some of the +evaluation challenges discussed in this post. Please +[reach out](https://humanloop.com/demo) if you'd like to learn more. + +[//]: # "## **Common pitfalls** ##" +[//]: # "- Not considering evaluation criteria early enough in the project" +[//]: # "- Relying too much on traditional data science methodologies" +[//]: # "- Being too waterfall" +[//]: # "- Not evaluating your evaluator" +[//]: # "- Not systematically capturing end user feedback" +[//]: # "- Not baking into CI" +[//]: # "- Thinking long context windows are a silver bullet" +[//]: # "- Exploding costs" +[//]: # "- Not exploring finetuning specialist evaluation models"", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/overview#looking-forward", + "title": "Looking forward...", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "How do you evaluate your large language model use case using a dataset and an evaluator on Humanloop? + +In this guide, we will walk through creating a dataset and using it to run an offline evaluation. + + + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluate-models-offline", + "title": "Run an evaluation", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/evaluate-models-offline#create-an-offline-evaluator", + "title": "Create an offline evaluator", + }, + ], + "description": "- You need to have access to Evaluations +- You also need to have a Prompt – if not, please follow our [Prompt creation](./create-prompt) guide. +- Finally, you need at least a few Logs in your prompt. Use the **Editor** to generate some logs if you have none. + + +You need logs for your project because we will use these as a source of test datapoints for the dataset we create. If you want to make arbitrary test datapoints from scratch, see our guide to doing this from the API. We will soon update the app to enable arbitrary test datapoint creation from your browser. + + +For this example, we will evaluate a model responsible for extracting critical information from a customer service request and returning this information in JSON. In the image below, you can see the model config we've drafted on the left and an example of it running against a customer query on the right. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluate-models-offline#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/evaluate-models-offline#create-an-offline-evaluator", + "title": "Create an offline evaluator", + }, + ], + "description": "We will create a dataset based on existing logs in the project. + + +### Navigate to the **Logs** tab +### Select the logs you would like to convert into test datapoints +### From the dropdown menu in the top right (see below), choose **Add to Dataset** + +Creating test datapoints from a selection of existing project datapoints. + +### In the dialog box, give the new dataset a name and provide an optional description. Click **Create dataset**. + + + + +You can add more datapoints to the same dataset later by clicking the 'add to existing dataset' button at the top. + + +### Go to the **Datasets** tab. + +### Click on the newly created dataset. One datapoint will be present for each log you selected in Step 3 + +The newly created dataset, containing datapoints converted from existing logs in the project. + +### Click on a datapoint to inspect its parameters. + + +A test datapoint contains inputs (the variables passed into your model config template), an optional sequence of messages (if used for a chat model) and a target representing the desired output. + +When existing logs are converted to datapoints, the datapoint target defaults to the output of the source Log. + + +In our example, we created datapoints from existing logs. The default behaviour is that the original log's output becomes an output field in the target JSON. + +To access the \`feature\` field more efficiently in our evaluator, we'll modify the datapoint targets to be a raw JSON with a feature key. + +The original log was an LLM generation which outputted a JSON value. The conversion process has placed this into the \`output\` field of the testcase target. + +### Modify the datapoint if you need to make refinements + +You can provide an arbitrary JSON object as the target. + +After editing, we have a clean JSON object recording the salient characteristics of the datapoint's expected output. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluate-models-offline#set-up-a-dataset", + "title": "Set up a dataset", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Having set up a dataset, we'll now create the evaluator. As with online evaluators, it's a Python function but for offline mode, it also takes a \`testcase\` parameter alongside the generated log. + + +### Navigate to the evaluations section, and then the Evaluators tab +### Select **+ New Evaluator** and choose **Offline Evaluation** +### Choose **Start from scratch** + +For this example, we'll use the code below to compare the LLM generated output with what we expected for that testcase. + +\`\`\`python Python +import json +from json import JSONDecodeError + +def it_extracts_correct_feature(log, testcase): + expected_feature = testcase["target"]["feature"] + + try: + # The model is expected to produce valid JSON output + # but it could fail to do so. + output = json.loads(log["output"]) + actual_feature = output.get("feature", None) + return expected_feature == actual_feature + + except JSONDecodeError: + # If the model didn't even produce valid JSON, then + # we evaluate the output as bad. + return False +\`\`\` + +### Use the Debug Console + +In the debug console at the bottom of the dialog, click **Load data** and then **Datapoints from dataset**. Select the dataset you created in the previous section. The console will be populated with its datapoints. + +The debug console. Use this to load test datapoints from a dataset and perform debug runs with any model config in your project. + +#### Choose a model config from the dropdown menu. + +#### Click the run button at the far right of one of the test datapoints. + +A new debug run will be triggered, which causes an LLM generation using that datapoint's inputs and messages parameters. The generated log and the test datapoint will be passed to the evaluator, and the resulting evaluation will be displayed in the **Result** column. + +### Click **Create** when you are happy with the evaluator. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluate-models-offline#create-an-offline-evaluator-1", + "title": "Create an offline evaluator", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Now that you have an offline evaluator and a dataset, you can use them to evaluate the performance of any model config in your project. + + +### Go to the **Evaluations** section. +### In the **Runs** tab, click **Run Evaluation** +### In the dialog box, choose a model config to evaluate and select your newly created dataset and evaluator. + + + +### Click **Batch Generate** + +### A new evaluation is launched. Click on the card to inspect the results. + +A batch generation has now been triggered. This means that the model config you selected will be used to generate a log for each datapoint in the dataset. It may take some time for the evaluation to complete, depending on how many test datapoints are in your dataset and what model config you are using. Once all the logs have been generated, the evaluator will execute for each in turn. + +### Inspect the results of the evaluation. + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluate-models-offline#trigger-an-offline-evaluation", + "title": "Trigger an offline evaluation", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "How to use Humanloop to evaluate your large language model use-case, using a dataset and an evaluator. + +In this guide, we'll walk through an example of using our API to create dataset and trigger an evaluation. + + + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) + + + + This guide uses our [Python SDK](/docs/api-reference/sdks). All of the + endpoints used are available in our [TypeScript SDK](/docs/api-reference/sdks) + and directly [via the API](/docs/reference/humanloop-api). +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluations-using-api", + "title": "Set up evaluations using API", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": " + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluations-using-api#prerequisites", + "title": "Prerequisites:", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "We'll go through how to use the SDK in a Python script to set up a project, create a dataset and then finally trigger an evaluation.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluations-using-api#create-evaluation", + "title": "Create evaluation", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/evaluations-using-api#create-evaluation", + "title": "Create evaluation", + }, + ], + "description": " +### Import Humanloop and set your [Humanloop](https://app.humanloop.com/account/api-keys) and [OpenAI API](https://platform.openai.com/account/api-keys) keys. + +\`\`\`python +from humanloop import Humanloop + +HUMANLOOP_API_KEY = "" +OPENAI_API_KEY = "" + +# Initialize the Humanloop client +humanloop = Humanloop( + api_key=HUMANLOOP_API_KEY, + openai_api_key=OPENAI_API_KEY, +) + +\`\`\` + +### Create a project and register your first model config + +We'll use OpenAI's GPT-4 for extracting product feature names from customer queries in this example. The first model config created against the project is automatically deployed: + +\`\`\`python + +# Create a project +project = humanloop.projects.create(name="evals-guide") +project_id = project.id + +# Create the first model config for the project, which will automatically be deployed +model_config = humanloop.model_configs.register( + project_id=project_id, + model="gpt-4", + name="Entity extractor v0", + endpoint="chat", + chat_template=[ + { + "role": "system", + "content": "Extract the name of the feature or issue the customer is describing. " + "Possible features are only: evaluations, experiments, fine-tuning \\n" + "Write your response in json format as follows:" + ' \\n {"feature": "feature requested", "issue": "description of issue"}', + } + ], +) +config_id = model_config.config.id + +\`\`\` + +If you log onto your Humanloop account you will now see your project with a single model config defined: + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluations-using-api#set-up-a-project", + "title": "Set up a project", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/evaluations-using-api#create-evaluation", + "title": "Create evaluation", + }, + ], + "description": "Follow the steps in our guide to [Upload a Dataset via API](./create-a-dataset#upload-via-api). + + +### Now test your model manually by generating a log for one of the datapoints' messages: + +\`\`\`python +# Generate a log +log = humanloop.chat_deployed( + project_id=project_id, + messages=data[0]["messages"], + inputs={"features": "evaluations, experiments, fine-tuning"}, +).data[0] + +import json +print(json.dumps(log)) +\`\`\` + +You can see from the \`output\` field in the response that the model has done a good job at extracting the mentioned features in the desired json format: + +\`\`\`json +{ + "id": "data_aVUA2QZPHaQTnhoOCG7yS", + "model_config_id": "config_RbbfjXOkEnzYK6PS8cS96", + "messages": [ + { + "role": "system", + "content": "Extract the name of the feature or issue the customer is describing. Possible features are only: evaluations, experiments, fine-tuning \\nWrite your response in json format as follows: \\n {\\"feature\\": \\"feature requested\\", \\"issue\\": \\"description of issue\\"}" + }, + { + "role": "user", + "content": "Hi Humanloop support team, I'm having trouble understanding how to use the evaluations feature in your software. Can you provide a step-by-step guide or any resources to help me get started?" + } + ], + "output": "{\\"feature\\": \\"evaluations\\", \\"issue\\": \\"trouble understanding how to use the evaluations feature\\"}", + "finish_reason": "stop" +} +\`\`\` + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluations-using-api#create-a-dataset", + "title": "Create a dataset", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Now that you have a project with a model config and a dataset defined, you can create an evaluator that will determine the success criteria for a log generated from the model using the target defined in the test datapoint. + + +### Create an evaluator to determine if the extracted JSON is correct and test it against the generated log and the corresponding test datapoint: + +\`\`\`python +# Define an evaluator +import json +from json import JSONDecodeError + + +def check_feature_json(datapoint, testcase): + expected_feature = testcase["target"]["feature"] + + try: + # The model is expected to produce valid JSON output but it could fail to do so. + output = json.loads(datapoint["output"]) + actual_feature = output.get("feature", None) + return expected_feature == actual_feature + except JSONDecodeError: + # If the model didn't even produce valid JSON, then it fails + return False + +# Try out the evalutor +print(f"Test case result: {check_feature_json(datapoint, data[0])}") + +\`\`\` + +\`\`\`shell +Test case result: True +\`\`\` + +### Submit this evaluator to Humanloop + +This means it can be used for future evaluations triggered via the UI or the API: + +\`\`\`python +import inspect + +# The evaluator must be sent as a string, so we convert it first +json_imports = "import json\\nfrom json import JSONDecodeError\\n" +evaluator_code = json_imports + inspect.getsource(check_feature_json) + +# Send evaluator to Humanloop +evaluator = humanloop.evaluators.create( + name="Feature request json", + description="Validate that the json returned by the model matches the target json", + code=evaluator_code, + arguments_type="target_required", + return_type="boolean", +) +evaluator_id = evaluator.id +\`\`\` + +In your Humanloop project you will now see an evaluator defined: + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluations-using-api#create-an-evaluator", + "title": "Create an evaluator", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/evaluations-using-api#create-an-evaluator", + "title": "Create an evaluator", + }, + ], + "description": " + +### Launch an evaluation + +You can now low against the model config using the dataset and evaluator. In practice you can include more than one evaluator: + +\`\`\`python +# Finally trigger an evaluation +evaluation = humanloop.evaluations.create( + project_id=project_id, + evaluator_ids=[evaluator_id], + config_id=config_id, + dataset_id=dataset_id, +) +\`\`\` + +Navigate to your Humanloop account to see the evaluation results. Initially it will be in a pending state, but will quickly move to completed given the small number of test cases. The datapoints generated by your model as part of the evaluation will also be recorded in your project's logs table. + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluations-using-api#launch-an-evaluation", + "title": "Launch an evaluation", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Here is the full script you can copy and paste and run in your Python environment: + +\`\`\`python +from humanloop import Humanloop +import inspect +import json +from json import JSONDecodeError + + +HUMANLOOP_API_KEY = "" +OPENAI_API_KEY = "" + +# Initialize the Humanloop client +humanloop = Humanloop( + api_key=HUMANLOOP_API_KEY, + openai_api_key=OPENAI_API_KEY, +) + +# Create a project +project = humanloop.projects.create(name="evals-guide") +project_id = project.id + +# Create the first model config for the project, which will automatically be deployed +model_config = humanloop.model_configs.register( + project_id=project_id, + model="gpt-4", + name="Entity extractor v0", + chat_template=[ + { + "role": "system", + "content": "Extract the name of the feature or issue the customer is describing. " + "Possible features are only: evaluations, experiments, fine-tuning \\n" + "Write your response in json format as follows:" + ' \\n {"feature": "feature requested", "issue": "description of issue"}', + } + ], + endpoint="chat", + temperature=0.5, +) +config_id = model_config.config.id + +# Example test case data +data = [ + { + "messages": [ + { + "role": "user", + "content": "Hi Humanloop support team, I'm having trouble understanding how to use the evaluations feature in your software. Can you provide a step-by-step guide or any resources to help me get started?", + } + ], + "target": {"feature": "evaluations", "issue": "needs step-by-step guide"}, + "inputs": {}, + }, + { + "messages": [ + { + "role": "user", + "content": "Hi there, I'm interested in fine-tuning a language model using your software. Can you explain the process and provide any best practices or guidelines?", + } + ], + "target": { + "feature": "fine-tuning", + "issue": "process explanation and best practices", + }, + "inputs": {}, + }, +] + +# Create a dataset +dataset = humanloop.datasets.create( + project_id=project_id, + name="Target feature requests", + description="Target feature request json extractions", +) + +# Create test datapoints for the dataset +datapoints = humanloop.datasets.create_datapoint( + dataset_id=dataset.id, + body=data, +) + +# Generate a log +log = humanloop.chat_deployed( + project_id=project_id, + messages=data[0]["messages"], +).data[0] + + +# Define an evaluator + +def check_feature_json(log, testcase): + expected_feature = testcase["target"]["feature"] + + try: + # The model is expected to produce valid JSON output but it could fail to do so. + output = json.loads(log["output"]) + actual_feature = output.get("feature", None) + return expected_feature == actual_feature + + except JSONDecodeError: + # If the model didn't even produce valid JSON, then it fails + return False + + +# Try out the evalutor +print(f"Test case result: {check_feature_json(log, data[0])}") + +# The evaluator must be sent as a string, so we convert it first +json_imports = "import json\\nfrom json import JSONDecodeError\\n" +evaluator_code = json_imports + inspect.getsource(check_feature_json) + +# Send evaluator to Humanloop +evaluator = humanloop.evaluators.create( + name="Feature request json", + description="Validate that the json returned by the model matches the target json", + code=evaluator_code, + arguments_type="target_required", + return_type="boolean", +) + +# Finally trigger an evaluation +evaluation = humanloop.evaluations.create( + project_id=project_id, + evaluator_ids=[evaluator.id], + config_id=config_id, + dataset_id=dataset_id, +) + +# Now navigate to your project's evaluations tab on humanloop to inspect the results +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluations-using-api#create-evaluation---full-script", + "title": "Create evaluation - full script", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Learn how to use LLM as a judge to check for PII in Logs. + +In this guide, we will set up an LLM evaluator to check for PII (Personally Identifiable Information) in Logs. + +As well as using Python code to evaluate Logs, you can also create special-purpose prompts for LLMs to evaluate Logs too. + +In this guide, we'll show how to set up LLM evaluations.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/use-llms-to-evaluate-logs", + "title": "Use LLMs to evaluate logs", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "- You need to have access to evaluations. +- You also need to have a Prompt – if not, please follow our [Prompt creation](./create-prompt) guide. +- Finally, you need at least a few logs in your project. Use the **Editor** to generate some logs if you don't have any yet.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/use-llms-to-evaluate-logs#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": " +### From the Evaluations page, click **New Evaluator** and select AI. + + + +### From the presets menu on the left-hand side of the page, select **PII**. + + + +### Set the evaluator to **Online** mode, and toggle **Auto-run** to on. This will make the PII checker run on all new logs in the project. + +The  **PII check** evaluator. + +### Click **Create** in the bottom left of the page. + +### Go to Editor and try generating a couple of logs, some containing PII and some without. + +### Go to the Logs table to review these logs. + +The logs table, showing that the **PII check** evaluator ran on the latest logs. + +### Click one of the logs to see more details in the drawer. + +In our example below, you can see that the the log did contain PII, and the **PII check** evaluator has correctly identified this and flagged it with **False**. + + + +### Click **View session** at the top of log drawer to inspect in more detail the LLM evaluator's generation itself. + +### Select the **PII check** entry in the session trace + +In the **Completed Prompt** tab of the log, you'll see the full input and output of the LLM evaluator generation. + +The LLM evaluator produced an explanation reasoning why the underlying log did contain PII, and terminated with a final verdict of 'False'. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/use-llms-to-evaluate-logs#set-up-an-llm-evaluator", + "title": "Set up an LLM evaluator", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "In the prompt editor for an LLM evaluator, you have access to the underlying log you are evaluating as well as the testcase that gave rise to it in the case of offline evaluations. These are accessed with the standard \`{{ variable }}\` syntax, enhanced with a familiar dot notation to pick out specific values from inside the \`log\` and \`testcase\` objects. The \`log\` and \`testcase\` shown in the debug console correspond to the objects available in the context of the LLM evaluator prompt. + +For example, suppose you are evaluating a log object like this. + +\`\`\`Text JSON +{ + "id": "data_B3RmIu9aA5FibdtXP7CkO", + "model_config": {...}, + "inputs": { + "hello": "world", + }, + "messages": [] + "output": "This is what the AI responded with.", + ...etc +} +\`\`\` + +In the LLM evaluator prompt, if you write \`{{ log.inputs.hello }}\` it will be replaced with \`world\` in the final prompt sent to the LLM evaluator model. + +Note that in order to get access to the fully populated prompt that was sent in the underlying log, you can use \`{{ log_prompt }}\`.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/use-llms-to-evaluate-logs#available-variables", + "title": "Available variables", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Learn how to run an evaluation in your own infrastructure and post the results to Humanloop. + +In this guide, we'll show how to run an evaluation in your own infrastructure and post the results to Humanloop. + +For some use cases, you may wish to run your evaluation process outside of Humanloop, as opposed to running the evaluators we offer in our Humanloop runtime. + +For example, you may have implemented an evaluator that uses your own custom model or which has to interact with multiple systems. In these cases, you can continue to leverage the datasets you have curated on Humanloop, as well as consolidate all of the results alongside the prompts you maintain in Humanloop. + +In this guide, we'll show an example of setting up a simple script to run such a self-hosted evaluation using our Python SDK.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/self-hosted-evaluations", + "title": "Self-hosted evaluations", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "- You need to have access to evaluations +- You also need to have a Prompt – if not, please follow our [Prompt creation](./create-prompt) guide. +- You need to have a dataset in your project. See our [dataset creation](./datasets) guide if you don't yet have one. +- You need to have a model config that you're trying to evaluate - create one in the **Editor**.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/self-hosted-evaluations#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": " +### Install the latest version of the Humanloop Python SDK: + +\`\`\`shell +pip install humanloop +\`\`\` + +### In a new Python script, import the Humanloop SDK and create an instance of the client: + +\`\`\`python +from humanloop import Humanloop + +humanloop = Humanloop( + api_key=YOUR_API_KEY, # Replace with your API key +) +\`\`\` + +### Retrieve the ID of the Humanloop project you are working in - you can find this in the Humanloop app + +\`\`\`python +PROJECT_ID = ... # Replace with the project ID +\`\`\` + +### Retrieve the dataset you're going to use for evaluation from the project + +\`\`\`python +# Retrieve a dataset +DATASET_ID = ... # Replace with the dataset ID you are using for evaluation (this should be inside the project) +datapoints = humanloop.datasets.list_datapoints(DATASET_ID).records +\`\`\` + +### Create an external evaluator + +\`\`\`python +# Create an external evaluator +evaluator = humanloop.evaluators.create( + name="My External Evaluator", + description="An evaluator that runs outside of Humanloop runtime.", + type="external", + arguments_type="target_required", + return_type="boolean", +) +\`\`\` + +### Retrieve the model config you're evaluating + +\`\`\`python +CONFIG_ID = ... # Replace with the model config ID you are evaluating (should be inside the project) +model_config = humanloop.model_configs.get(CONFIG_ID) +\`\`\` + +### Initiate an evaluation run in Humanloop + +\`\`\`python +evaluation_run = humanloop.evaluations.create( + project_id=PROJECT_ID, + config_id=CONFIG_ID, + evaluator_ids=[EVALUATOR_ID], + dataset_id=DATASET_ID, +) +\`\`\` + +After this step, you'll see a new run in the Humanloop app, under the **Evaluations** tab of your project. It should have status **running**. + +### Iterate through the datapoints in your dataset and use the model config to generate logs from them + +\`\`\`python +logs = [] +for datapoint in datapoints: + log = humanloop.chat_model_config( + project_id=PROJECT_ID, + model_config_id=model_config.id, + inputs=datapoint.inputs, + messages=[ + {key: value for key, value in dict(message).items() if value is not None} + for message in datapoint.messages + ], + source_datapoint_id=datapoint.id, + ).data[0] + logs.append((log, datapoint)) +\`\`\` + +### Evaluate the logs using your own evaluation logic and post the results back to Humanloop + +In this example, we use an extremely simple evaluation function for clarity. + +\`\`\`python +for log, datapoint in logs: + # The datapoint's 'target' field tells us the correct answer for this datapoint + expected_answer = str(datapoint.target["answer"]) + + # The log output is what the model produced + model_output = log.output + + # The evaluation is a boolean, indicating whether the model was correct. + result = expected_answer == model_output + + # Post the result back to Humanloop. + evaluation_result_log = humanloop.evaluations.log_result( + log_id=log.id, + evaluator_id=evaluator.id, + evaluation_run_external_id=evaluation_run.id, + result=result, + ) +\`\`\` + +### Mark the evaluation run as completed + +\`\`\`python +humanloop.evaluations.update_status(id=evaluation_run.id, status="completed") +\`\`\` + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/self-hosted-evaluations#setting-up-the-script", + "title": "Setting up the script", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "After running this script with the appropriate resource IDs (project, dataset, model config), you should see the results in the Humanloop app, right alongside any other evaluations you have performed using the Humanloop runtime. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/self-hosted-evaluations#review-the-results", + "title": "Review the results", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Learn how to use the Humanloop Python SDK to create an evaluation run and post-generated logs. + +In this guide, we'll demonstrate an evaluation run workflow where logs are generated outside the Humanloop environment and posted via API. + +If running your infrastructure to generate logs, you can still leverage the Humanloop evaluations suite via our API. The workflow looks like this: + +1. Trigger the creation of an evaluation run +2. Loop through the datapoints in your dataset and perform generations on your side +3. Post the generated logs to the evaluation run + +This works with any evaluator - if you have configured a Humanloop-runtime evaluator, these will be automatically run on each log you post to the evaluation run; or, you can use self-hosted evaluators and post the results to the evaluation run yourself (see [Self-hosted evaluations](./self-hosted-evaluations)).", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluating-externally-generated-logs", + "title": "Evaluating externally generated Logs", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "- You need to have access to evaluations +- You also need to have a project created - if not, please first follow our project creation guides. +- You need to have a dataset in your project. See our dataset creation guide if you don't yet have one. +- You need a model configuration to evaluate, so create one in the Editor.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluating-externally-generated-logs#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": " + +### Install the latest version of the Humanloop Python SDK + +\`\`\`shell +pip install humanloop +\`\`\` + +### In a new Python script, import the Humanloop SDK and create an instance of the client + +\`\`\`python +humanloop = Humanloop( + api_key=YOUR_API_KEY, # Replace with your Humanloop API key +) +\`\`\` + +### Retrieve the ID of the Humanloop project you are working in + +You can find this in the Humanloop app. + +\`\`\`python +PROJECT_ID = ... # Replace with the project ID +\`\`\` + +### Retrieve the dataset you're going to use for evaluation from the project + +\`\`\`python +# Retrieve a dataset +DATASET_ID = ... # Replace with the dataset ID you use for evaluation. + # This must be a dataset in the project you are working on. +datapoints = humanloop.datasets.list_datapoints(DATASET_ID).records +\`\`\` + +### Set up the model config you are evaluating + +If you constructed this in Humanloop, retrieve it by calling: + +\`\`\`python +config = humanloop.model_configs.get(id=CONFIG_ID) +\`\`\` + +Alternatively, if your model config lives outside the Humanloop system, post it to Humanloop with the [register model config endpoint](/api-reference/model-configs/model-configs-register). + +Either way, you need the ID of the config. + +\`\`\`python +CONFIG_ID = +\`\`\` + +### In the Humanloop app, create an evaluator + +We'll create a **Valid JSON** checker for this guide. + +1. Visit the **Evaluations** tab, and select **Evaluators** +2. Click **+ New Evaluator** and choose **Code** from the options. +3. Select the **Valid JSON** preset on the left. +4. Choose the mode **Offline** in the settings panel on the left. +5. Click **Create**. +6. Copy your new evaluator's ID from the address bar. It starts with \`evfn_\`. + +\`\`\`python +EVALUATOR_ID = +\`\`\` + +### Create an evaluation run with \`hl_generated\` set to \`False\` + +This tells the Humanloop runtime that it should not trigger evaluations but wait for them to be posted via the API. + +\`\`\`python +evaluation_run = humanloop.evaluations.create( + project_id=PROJECT_ID, + config_id=CONFIG_ID, + dataset_id=DATASET_ID, + evaluator_ids=[EVALUATOR_ID], + hl_generated=False, +) +\`\`\` + +By default, the evaluation status after creation is \`pending\`. Before sending the generation logs, set the status to \`running\`. + +\`\`\`python +humanloop.evaluations.update_status(id=evaluation_run.id, status="running") +\`\`\` + +### Iterate through the datapoints in the dataset, produce a generation and post the evaluation + +\`\`\`python +for datapoint in datapoints: + # Use the datapoint to produce a log with the model config you are testing. + # This will depend on whatever model calling setup you are using on your side. + # For simplicity, we simply log a hardcoded + log = { + "project_id": PROJECT_ID, + "config_id": CONFIG_ID, + "messages": [*config.chat_template, *datapoint.messages], + "output": "Hello World!", + } + + print(f"Logging generation for datapoint {datapoint.id}") + humanloop.evaluations.log( + evaluation_id=evaluation_run.id, + log=log, + datapoint_id=datapoint.id, + ) +\`\`\` + +#### Run the full script above. + +If everything goes well, you should now have posted a new evaluation run to Humanloop and logged all the generations derived from the underlying datapoints. + +The Humanloop evaluation runtime will now iterate through those logs and run the **Valid JSON** evaluator on each. To check progress: + +### Visit your project in the Humanloop app and go to the **Evaluations** tab. + +You should see the run you recently created; click through to it, and you'll see rows in the table showing the generations. + + + + + +In this case, all the evaluations returned \`False\` because the "Hello World!" string wasn't valid JSON. Try logging something valid JSON to check that everything works as expected. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluating-externally-generated-logs#setting-up-the-script", + "title": "Setting up the script", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "For reference, here's the full script to get started quickly. + +\`\`\`python +from humanloop import Humanloop + +API_KEY = + +humanloop = Humanloop( + api_key=API_KEY, +) + +PROJECT_ID = +DATASET_ID = +CONFIG_ID = +EVALUATOR_ID = + +# Retrieve the datapoints in the dataset. +datapoints = humanloop.datasets.list_datapoints(dataset_id=DATASET_ID).records + +# Retrieve the model config +config = humanloop.model_configs.get(id=CONFIG_ID) + +# Create the evaluation run +evaluation_run = humanloop.evaluations.create( + project_id=PROJECT_ID, + config_id=CONFIG_ID, + dataset_id=DATASET_ID, + evaluator_ids=[EVALUATOR_ID], + hl_generated=False, +) +print(f"Started evaluation run {evaluation_run.id}") + +# Set the status of the run to running. +humanloop.evaluations.update_status(id=evaluation_run.id, status="running") + +# Iterate the datapoints and log a generation for each one. +for i, datapoint in enumerate(datapoints): + # Produce the log somehow. This is up to you and your external setup! + log = { + "project_id": PROJECT_ID, + "config_id": CONFIG_ID, + "messages": [*config.chat_template, *datapoint.messages], + "output": "Hello World!", # Hardcoded example for demonstration + } + + print(f"Logging generation for datapoint {datapoint.id}") + humanloop.evaluations.log( + evaluation_id=evaluation_run.id, + log=log, + datapoint_id=datapoint.id, + ) + +print(f"Completed evaluation run {evaluation_run.id}") +\`\`\` + + +It's also a good practice to wrap the above code in a try-except block and to mark the evaluation run as failed (using \`update_status\`) if an exception causes something to fail. +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluating-externally-generated-logs#full-script", + "title": "Full Script", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Learn how to set up a human evaluator to collect feedback on the output of your model. + +This guide demonstrates how to run a batch generation and collect manual human feedback.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluating-with-human-feedback", + "title": "Evaluating with human feedback", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "- You need to have access to evaluations. +- You also need to have a Prompt – if not, please follow our [Prompt creation](./create-prompt) guide. +- Finally, you need at least a few logs in your project. Use the **Editor** to generate some logs if you don't have any yet.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluating-with-human-feedback#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": " + +### Create a 'Human' Evaluator + +From the Evaluations page, click **New Evaluator** and select **Human**. + + + +### Give the evaluator a name and description and click **Create** in the top-right. + +### Return to the **Evaluations** page and select **Run Evaluation**. + +### Choose the model config you are evaluating, a dataset you would like to evaluate against and then select the new Human evaluator. + + + +### Click **Batch generate** and follow the link in the bottom-right corner to see the evaluation run. + + + +### View the details + +As the rows populate with the generated output from the model, you can review those outputs and apply feedback in the rating column. Click a row to see the full details of the Log in a drawer. + +### Apply your feedback either directly in the table, or from the drawer. + + + +### Once you've finished providing feedback for all the Logs in the run, click **Mark as complete** in the top right of the page. + +### You can review the aggregated feedback results in the **Stats** section on this page. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluating-with-human-feedback#set-up-an-evaluator-to-collect-human-feedback", + "title": "Set up an evaluator to collect human feedback", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "If you need a more complex feedback schema, visit the **Settings** page in your project and follow the link to **Feedbacks**. Here, you can add more categories to the default feedback types. If you need more control over feedback types, you can [create new ones via the API](/api-reference/projects/createfeedbacktype).", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/evaluating-with-human-feedback#configuring-the-feedback-schema", + "title": "Configuring the feedback schema", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": "Learn how to create and use online evaluators to observe the performance of your models. + +In this guide, we will demonstrate how to create and use online evaluators to observe the performance of your models. + + + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/monitoring", + "title": "Set up Monitoring", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/monitoring#create-an-online-evaluator", + "title": "Create an online evaluator", + }, + ], + "description": "- You need to have access to evaluations. +- You also need to have a Prompt – if not, please follow our [Prompt creation](./create-prompt) guide. +- Finally, you need at least a few logs in your project. Use the **Editor** to generate some logs if you don't have any yet. + +To set up an online Python evaluator: + + +### Go to the **Evaluations** page in one of your projects and select the **Evaluators** tab +### Select **+ New Evaluator** and choose **Code Evaluator** in the dialog + +Selecting the type of a new evaluator + +### From the library of presets on the left-hand side, we'll choose **Valid JSON** for this guide. You'll see a pre-populated evaluator with Python code that checks the output of our model is valid JSON grammar. + +The evaluator editor after selecting **Valid JSON** preset + +### In the debug console at the bottom of the dialog, click **Random logs from project**. The console will be populated with five datapoints from your project. + +The debug console (you can resize this area to make it easier to view the logs) + +### Click the **Run** button at the far right of one of the log rows. After a moment, you'll see the **Result** column populated with a \`True\` or \`False\`. + +The **Valid JSON** evaluator returned \`True\` for this particular log, indicating the text output by the model was grammatically correct JSON. + +### Explore the \`log\` dictionary in the table to help understand what is available on the Python object passed into the evaluator. + +### Click **Create** on the left side of the page. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/monitoring#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + ], + "description": " +### On the new **Valid JSON ** evaluator in the Evaluations tab, toggle the switch to **on** - the evaluator is now activated for the current project. + +Activating the new evaluator to run automatically on your project. + +### Go to the **Editor**, and generate some fresh logs with your model. + +### Over in the **Logs** tab you'll see the new logs. The **Valid JSON** evaluator runs automatically on these new logs, and the results are displayed in the table. + +The **Logs** table includes a column for each activated evaluator in your project. Each activated evaluator runs on any new logs in the project. +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/monitoring#activate-an-evaluator-for-a-project", + "title": "Activate an evaluator for a project", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/evaluation/overview", + "title": "Evaluation and Monitoring", + }, + { + "slug": "docs/v4/guides/evaluation/monitoring#track-the-performance-of-models", + "title": "Track the performance of models", + }, + ], + "description": "- A Humanloop project with a reasonable amount of data. +- An Evaluator activated in that project. + +To track the performance of different model configs in your project: + + + + ### Go to the **Dashboard** tab. + + In the table of model configs at the + bottom, choose a subset of the project's model configs. + +### Use the graph controls + +At the top of the page to select the date range and time granularity +of interest. + +### Review the relative performance + +For each activated Evaluator shown in the graphs, you can see the relative performance of the model configs you selected. + + + + + + +The following Python modules are available to be imported in your code evaluators: + +- \`re\` +- \`math\` +- \`random\` +- \`datetime\` +- \`json\` (useful for validating JSON grammar as per the example above) +- \`jsonschema\` (useful for more fine-grained validation of JSON output - see the in-app example) +- \`sqlglot\` (useful for validating SQL query grammar) +- \`requests\` (useful to make further LLM calls as part of your evaluation - see the in-app example for a suggestion of how to get started). + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/evaluation/monitoring#prerequisites-1", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/overview", + "title": "Datasets", + }, + ], + "description": "Datasets are pre-defined collections of input-output pairs that you can use within Humanloop to define fixed examples for your projects. + +Datasets are collections of datapoints which represent input-output pairs for an LLM call. + +Datasets are pre-defined collections of input-output pairs that you can use within Humanloop to define fixed examples for your projects. + +A datapoint consists of three things: + +- **Inputs**: a collection of prompt variable values which are interpolated into the prompt template of your model config at generation time (i.e. they replace the \`{{ variables }}\` you define in the prompt template. +- **Messages**: for chat models, as well as the prompt template, you may have a history of prior chat messages from the same conversation forming part of the input to the next generation. Datapoints can have these messages included as part of the input. +- **Target**: data representing the expected or intended output of the model. In the simplest case, this can simply be a string representing the exact output you hope the model produces for the example represented by the datapoint. In more complex cases, you can define an arbitrary JSON object for \`target\` with whatever fields are necessary to help you specify the intended behaviour. You can then use our [evaluations](./evaluate-your-model) feature to run the necessary code to compare the actual generated output with your \`target\` data to determine whether the result was as expected. + +Datapoints are pre-defined input-output pairs. + +Datasets can be created via CSV upload, converting from existing Logs in your project, or by API requests.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/overview", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/overview", + "title": "Datasets", + }, + ], + "description": "Learn how to create Datasets in Humanloop to define fixed examples for your projects, and build up a collection of input-output pairs for evaluation and fine-tuning. + +Datasets can be created from existing logs or uploaded from CSV and via the API. + +You can currently create Datasets in Humanloop in three ways: from existing **logs**, by uploading a **CSV** or via the **API**.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-dataset", + "title": "Create a dataset", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/overview", + "title": "Datasets", + }, + ], + "description": "Prerequisites: + +- A [Prompt](/docs/prompts) in Humanloop +- Some [Logs](./generate-and-log-with-the-sdk) available in that Prompt + +To create a Dataset from existing Logs: + + + +### Go to the **Logs** tab + +### Select a subset of the Logs + +### Choose **Add to Dataset** + +In the menu in the top right of the page, select **Add to dataset**. + +Select some logs and then click **Add to Dataset** + +### Add to a new or existing Dataset + +Provide a name of the new dataset and click **Create**, or you can click **add to existing dataset** to append the selected to a dataset you already have. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-dataset#create-a-dataset-from-logs", + "title": "Create a Dataset from Logs", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/overview", + "title": "Datasets", + }, + ], + "description": "Prerequisites: + +- A [Prompt](/docs/prompts) in Humanloop + +To create a dataset from a CSV file, we'll first create a CSV in Google Sheets and then upload it to a dataset in Humanloop. + + +### Create a CSV file. + - In our Google Sheets example below, we have a column called \`user_query\` which is an input to a prompt variable of that name. So in our model config, we'll need to include \`{{ user_query }}\` somewhere, and that placeholder will be populated with the value from the \`user_query\` input in the datapoint at generation-time. + - You can include as many columns of prompt variables as you need for your model configs. + - There is additionally a column called \`target\` which will populate the target of the datapoint. In this case, we use simple strings to define the target. + - Note: \`messages\` are harder to incorporate into a CSV file as they tend to be verbose and hard-to-read JSON. If you want a dataset with messages, consider using the API to upload, or convert from existing logs. + +A CSV file in Google Sheets defining a collection of 9 datapoints. + +### Export the Google Sheet to CSV + +Choose **File** → **Download** → **Comma-separated values (.csv)** + +### Create a new Dataset File + +### Click **Upload CSV** + +Uupload the CSV file from step 2 by drag-and-drop or using the file explorer. + +Uploading a CSV file to create a dataset. + +### Click **Upload Dataset from CSV** + +You should see a new dataset appear in the datasets tab. You can explore it by clicking in. + +### Follow the link in the pop-up to inspect the dataset that was created in the upload. + +You'll see a column with the input key-value pairs for each datapoint, a messages column (in our case we didn't use messages, so they're all empty) and a target column with the expected model output. + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-dataset#upload-data-from-csv", + "title": "Upload data from CSV", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/overview", + "title": "Datasets", + }, + ], + "description": " + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + + + + + +### First define some sample data + +This should consist of user messages and target extraction pairs. This is where you could load up any existing data you wish to use for your evaluation: + +\`\`\`python Python +# Example test case data +data = [ + { + "messages": [ + { + "role": "user", + "content": "Hi Humanloop support team, I'm having trouble understanding how to use the evaluations feature in your software. Can you provide a step-by-step guide or any resources to help me get started?", + } + ], + "target": {"feature": "evaluations", "issue": "needs step-by-step guide"}, + "inputs": {}, + }, + { + "messages": [ + { + "role": "user", + "content": "Hi there, I'm interested in fine-tuning a language model using your software. Can you explain the process and provide any best practices or guidelines?", + } + ], + "target": { + "feature": "fine-tuning", + "issue": "process explanation and best practices", + }, + "inputs": {}, + }, +] +\`\`\` + +### Then define a dataset and upload the datapoints + +\`\`\`python Python +# Create a dataset +dataset = humanloop.datasets.create( + project_id=project_id, + name="Sample dataset", + description="Examples of featue requests extracted from user messages", +) +dataset_id = dataset.id + +# Create datapoints for the dataset +datapoints = humanloop.datasets.create_datapoint( + dataset_id=dataset_id, + body=data, +) +\`\`\` + + + +On the datasets tab in your Humanloop project you will now see the dataset you just uploaded via the API. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-dataset#upload-via-api", + "title": "Upload via API", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/overview", + "title": "Datasets", + }, + ], + "description": "This guide demonstrates how to run a batch generation using a large language model across all the datapoints in a dataset. + +Once you have created a dataset, you can trigger batch generations across it with any model config in your project. + +This guide demonstrates how to run a batch generation across all the datapoints in a dataset. + +**Prerequistes** + +- A [Prompt](/docs/prompts)) in Humanloop +- A [dataset](/docs/datasets) in that project", + "indexSegmentId": "0", + "slug": "docs/v4/guides/batch-generate", + "title": "Batch generate", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/overview", + "title": "Datasets", + }, + ], + "description": "It's important that the model config we use to perform the batch generation is consistent with the dataset. We're going to use the simple customer support dataset that we uploaded in the previous [Create a dataset guide](./create-a-dataset). As a reminder, the dataset looks like this + +The underlying data for our \`customer_queries\` dataset. + +We want to get the model to classify the customer support query into the appropriate category. For this dataset, we have specified the correct category for each datapoint, so we'll be able to know easily if the model produced the correct output. + + +### In Editor, create a simple completion model config as below. + + + +We've used the following prompt: + +_You are a customer support classifier for Humanloop, a platform for building applications with LLMs._ + +_Please classify the following customer support query into one of these categories: +[datasets, docs, evaluators, feedback, fine-tuning, model configs, model providers]_ + +_{{user_query}}_ + +The most important thing here is that we have included a **prompt variable** - \`{{ user_query }}\` which corresponds to the input key on all the datapoints in our dataset. This was the first column header in the CSV file we used to upload the dataset. + +### Save the model config by clicking the **Save** button. Call the config \`support_classifier\`. + +### Go to the **Datasets** tab + +### Click the menu icon in the top-right corner of the dataset you want to perform a batch generation across. + +### In that menu, choose **Batch Generate & Eval** + +Trigger a batch generation on a dataset from this menu. + +### In the dialog window, choose the \`support_classifier\` model config created in step 2. + +### You can also optionally select an evaluator to use to compare the model's generation output to the target output in each datapoint. We set up the \`Exact match\` offline evaluator in our project (it's one of the builtins and requires no further configuration). + +### Click **Batch generate** + +### Follow the link in the pop-up to the batch generation run which is under the **Evaluations** tab. + +The batch generate output view, including an **exact match** evaluator. + + +The output the model produced is shown in the **output** column, and the exact match column shows that the model produced the expected (target) output in most cases. From here, we could inspect the failing cases and iterate on our model config before testing again to see if the accuracy across the whole dataset has improved.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/batch-generate#create-a-model-config", + "title": "Create a model config", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": "Experiments allow you to set up A/B test between multiple different Prompts. + +Experiments allow you to set up A/B test between multiple different Prompts. + +Experiments allow you to set up A/B test between multiple different [Prompts](/docs/prompts). + +Experiments can be used to compare different prompt templates, different parameter combinations (such as temperature and presence penalties) and even different base models. + +This enables you to try out alternative prompts or models and use the feedback from your users to determine which works better. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/run-an-experiment", + "title": "Overview", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": "Experiments allow you to set up A/B tests between multiple model configs. + +This guide shows you how to experiment with Humanloop to systematically find the best-performing model configuration for your project based on your end-user’s feedback. + +Experiments can be used to compare different prompt templates, parameter combinations (such as temperature and presence penalties), and even base models.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/experiments-from-the-app", + "title": "Run an experiment", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. +- You have integrated \`humanloop.complete_deployed()\` or the \`humanloop.chat_deployed()\` endpoints, along with the \`humanloop.feedback()\` with the [API](https://www.postman.com/humanloop/workspace/humanloop) or [Python SDK](./generate-and-log-with-the-sdk). + + +This guide assumes you're using an OpenAI model. If you want to use other providers or your model, refer to the [guide for running an experiment with your model provider](./use-your-own-model-provider). +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/experiments-from-the-app#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": " + +### Navigate to the **Experiments** tab of your Prompt + +### Click the **Create new experiment** button + +1. Give your experiment a descriptive name. +2. Select a list of feedback labels to be considered as positive actions - this will be used to calculate the performance of each of your model configs during the experiment. +3. Select which of your project’s model configs to compare. +4. Then click the **Create** button. + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/experiments-from-the-app#create-an-experiment", + "title": "Create an experiment", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": "Now that you have an experiment, you need to set it as the project’s active experiment: + + +### Navigate to the **Experiments** tab. +Of a Prompt go to the **Experiments** tab. + +### Choose the **Experiment** card you want to deploy. + +### Click the **Deploy** button + +Next to the Environments label, click the **Deploy** button. + +### Select the environment to deploy the experiment. + +We only have one environment by default so select the 'production' environment. + + + + + +Now that your experiment is active, any SDK or API calls to generate will sample model configs from the list you provided when creating the experiment and any subsequent feedback captured using feedback will contribute to the experiment performance. +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/experiments-from-the-app#set-the-experiment-live", + "title": "Set the experiment live", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": "Now that an experiment is live, the data flowing through your generate and feedback calls will update the experiment progress in real-time: + + + +### Navigate back to the **Experiments** tab. + +### Select the **Experiment** card + + + +Here you will see the performance of each model config with a measure of confidence based on how much feedback data has been collected so far: + + +You can toggle on and off existing model configs and choose to add new model configs from your project over the lifecycle of an experiment + +🎉 Your experiment can now give you insight into which of the model configs your users prefer. + + +How quickly you can draw conclusions depends on how much traffic you have flowing through your project. + +Generally, you should be able to draw some initial conclusions after on the order of hundreds of examples. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/experiments-from-the-app#monitor-experiment-progress", + "title": "Monitor experiment progress", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": "Experiments allow you to set up A/B test between multiple different model configs. + +How to set up an experiment on Humanloop using your own model. + +Experiments can be used to compare different prompt templates, different parameter combinations (such as temperature and presence penalties) and even different base models. + +**This guide focuses on the case where you wish to manage your own model provider calls.**", + "indexSegmentId": "0", + "slug": "docs/v4/guides/run-an-experiment-with-your-own-model-provider", + "title": "Run experiments managing your own model", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. +- You have integrated \`humanloop.complete_deployed()\` or the \`humanloop.chat_deployed()\` endpoints, along with the \`humanloop.feedback()\` with the [API](https://www.postman.com/humanloop/workspace/humanloop) or [Python SDK](./generate-and-log-with-the-sdk). + + +This guide assumes you're are using an OpenAI model. If you want to use other providers or your own model please also look at the [guide for running an experiment with your own model provider](./use-your-own-model-provider). + +**Support for other model providers on Humanloop is coming soon.** + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/run-an-experiment-with-your-own-model-provider#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": " + ### Navigate to the **Experiments** tab of your project. ### Click the + **Create new experiment** button: 1. Give your experiment a descriptive name. + 2. Select a list of feedback labels to be considered as positive actions - + this will be used to calculate the performance of each of your model configs + during the experiment. 3. Select which of your project’s model configs you + wish to compare. Then click the **Create** button. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/run-an-experiment-with-your-own-model-provider#create-an-experiment", + "title": "Create an experiment", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/run-an-experiment", + "title": "Experiments", + }, + ], + "description": "In order to log data for your experiment without using \`humanloop.complete_deployed()\` or \`humanloop.chat_deployed()\`, you must first determine which model config to use for your LLM provider calls. This is where the \`humanloop.experiments.get_model_config()\` function comes in. + + + +### Go to your Prompt dashboard + +### Set the experiment as the active deployment. + +To do so, find the **default** environment in the Deployments bar. Click the dropdown menu from the default environment and from those options select **Change deployment**. In the dialog that opens select the experiment you created. + + + +### Copy your \`project_id\` + +From the URL, \`https://app.humanloop.com/projects//dashboard\`. The project ID starts with \`pr_\`. + +### Alter your existing logging code + +To now first sample a model_config from your experiment to use when making your call to OpenAI: + +\`\`\`python +from humanloop import Humanloop +import openai + +# Initialize the SDK with your Humanloop API key +humanloop = Humanloop(api_key="") + +# Sample a model_config from your experiment. +model_config_response = humanloop.projects.get_active_config(id=project_id) +model_config = model_config_response.config + +# Make a generation using OpenAI using the parameters from the sampled model_config. +response = openai.Completion.create( + prompt="Answer the following question like Paul Graham from YCombinator:\\n" + "How should I think about competition for my startup?", + model=model_config["model"], + temperature=model_config["temperature"], +) + +# Parse the output from the OpenAI response. +output = response.choices[0].text + +# Log the inputs and outputs to the experiment trial associated to the sampled model_config. +log_response = humanloop.log( + project_id=project_id, + inputs={"question": "How should I think about competition for my startup?"}, + output=output, + trial_id=model_config["trial_id"], +) + +# Use this ID to associate feedback received later to this log. +data_id = log_response.id +\`\`\` + + + +You can also run multiple experiments within a single project. In this case, first navigate to the **Experiments** tab of your project and select your **Experiment card**. Then, retrieve your \`experiment_id\` from the experiment summary: + + + +Then, retrieve your model config from your experiment by calling \`humanloop.experiments.sample(experiment_id=experiment_id)\`.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/run-an-experiment-with-your-own-model-provider#log-to-your-experiment", + "title": "Log to your experiment", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + ], + "description": "Learn how to use tool calling in your large language models and intract with it in the Humanloop Playground. + +How to use Tool Calling to have your Prompts interact with external functions. + +Humanloop's Editor supports the usage of [OpenAI function calling](https://platform.openai.com/docs/guides/function-calling/function-calling), which we refer to as JSON Schema tools. JSON Schema tools follow the universal [JSON Schema syntax](https://json-schema.org/) definition, similar to OpenAI function calling. You can define inline JSON Schema tools as part of your model configuration in the editor. These tools allow you to define a structure for OpenAI to follow when responding. In this guide, we'll walk through the process of using tools in the editor to interact with \`gpt-4\`. + +---", + "indexSegmentId": "0", + "slug": "docs/v4/guides/tool-calling", + "title": "Tool Calling in Editor", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/tool-calling#create-a-tool", + "title": "Create a Tool", + }, + ], + "description": "- A Humanloop account - you can create one by going to our sign up page. +- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. + + +To view the list of models that support Tool calling, see the [Models page](/docs/supported-models#models). + + + +To create and use a tool follow the following steps: + + +### **Open the editor** +Start by opening the Humanloop Editor in your web browser. You can access this directly from your Humanloop account dashboard. + +### **Select the model** + +In the editor, you'll see an option to select the model. Choose \`gpt-4\` from the dropdown list. + +### **Define the tool** + +To define a tool, you'll need to use the universal [JSON Schema syntax](https://json-schema.org/) syntax. For the purpose of this guide, let's select one of our preloaded example tools \`get_current_weather\`. In practice this would correspond to a function you have defined locally, in your own code, and you are defining the parameters and structure that you want OpenAI to respond with to integrate with that function. + + + +### **Input user text** + +Let's input some user text relevant to our tool to trigger OpenAI to respond with the corresponding parameters. Since we're using a weather-related tool, type in: \`What's the weather in Boston?\`. + + + +It should be noted that a user can ask a non-weather related question such as '_how are you today?_ ' and it likely wouldn't trigger the model to respond in a format relative to the tool. + + + +### **Check assistant response** + +If correctly set up, the assistant should respond with a prompt to invoke the tool, including the name of the tool and the data it requires. For our \`get_current_weather\` tool, it might respond with the relevant tool name as well as the fields you requested, such as: + +\`\`\` +get_current_weather + +{ + "location": "Boston" +} +\`\`\` + +### **Input tool parameters** + +The response can be used locally or for prototyping you can pass in any relevant values. In the case of our \`get_current_weather\` tool, we might respond with parameters such as temperature (e.g., 22) and weather condition (e.g., sunny). To do this, in the tool response add the parameters in the in the format \`{ "temperature": 22, "condition": "sunny" }\`. To note, the response format is also flexible, inputting \`22, sunny\` likely also works and might help you iterate more quickly in your experimentation. + +### **Submit tool response** + +After defining the parameters, click on the 'Run' button to send the Tool message to OpenAI. + +### **Review assistant response** + +The assistant should now respond using your parameters. For example, it might say: \`The current weather in Boston is sunny with a temperature of 22 degrees.\` + + + +### **Save the model config** + +If you are happy with your tool, you can save the model config. The tool will be saved on that model config and can be used again in the future by loading the model config again in the editor or by calling the model config via our SDK. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/tool-calling#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + ], + "description": "Learn how to use OpenAI function calling in the Humanloop Python SDK. + +In this guide we will demonstrate how to take advantage of OpenAI function calling in our Python SDK. + +The Humanloop SDK provides an easy way for you to integrate the functionality of [OpenAI function calling](https://platform.openai.com/docs/guides/function-calling/function-calling), which we refer to as JSON Schema tools, into your existing projects. Tools follow the same universal [JSON Schema syntax](https://json-schema.org/) definition as OpenAI function calling. In this guide, we'll walk you through the process of using tools with the Humanloop SDK via the chat endpoint. + +---", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-a-tool-with-the-sdk", + "title": "Tool Calling with the SDK", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/create-a-tool-with-the-sdk#creating-a-tool", + "title": "Creating a Tool", + }, + ], + "description": "- A Humanloop account - you can create one by going to our sign up page. +- Python installed - you can download and install Python by following the steps on the [Python download page](https://www.python.org/downloads/). + + + This guide assumes you're using OpenAI with the \`gpt-4\` model. Only specific + models from OpenAI are supported for function calling. + + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop TypeScript SDK: + \`\`\`shell + npm install humanloop + \`\`\` +2. Import and initialize the SDK: + + \`\`\`ts + import { HumanloopClient, Humanloop } from "humanloop"; + + const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" }); + + // Check that the authentication was successful + console.log(await humanloop.prompts.list()); + \`\`\` + + + + + +First you need to install and initialize the SDK. If you have already done this, skip to the next section. Otherwise, open up your terminal and follow these steps: + +1. Install the Humanloop Python SDK: + \`\`\`shell + pip install humanloop + \`\`\` +2. Start a Python interpreter: + \`\`\`shell + python + \`\`\` +3. Initialize the SDK with your Humanloop API key (get your API key from your [Organisation Settings page](https://app.humanloop.com/account/api-keys)) + + \`\`\`python + from humanloop import Humanloop + hl = Humanloop(api_key="") + + # Check that the authentication was successful + print(hl.prompts.list()) + \`\`\` + + + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-a-tool-with-the-sdk#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/create-a-tool-with-the-sdk#creating-a-tool", + "title": "Creating a Tool", + }, + ], + "description": "The SDK requires Python 3.8 or greater. + + +### **Import the Humanloop SDK**: If you haven't done so already, you'll need to install and import the Humanloop SDK into your Python environment. You can do this using pip: + +\`\`\`python +pip install humanloop +\`\`\` + +_Note, this guide was built with \`Humanloop==0.5.18\`_. + +Then import the SDK in your script: + +\`\`\`python +from humanloop import Humanloop +\`\`\` + +### **Initialize the SDK**: Initialize the Humanloop SDK with your API key: + +\`\`\`python +from humanloop import Humanloop + +hl = Humanloop(api_key="") +\`\`\` + +### **Create a chat with the tool**: We'll start with the general chat endpoint format. + +\`\`\`python +from humanloop import Humanloop + +hl = Humanloop(api_key="") + + +def run_conversation(): + # Step 1: send the conversation and available functions to GPT + messages = [{"role": "user", "content": "What's the weather like in Boston?"}] + + # TODO - Add tools definition here + + response = hl.chat( + project="Assistant", + model_config={"model": "gpt-4", "max_tokens": 100}, + messages=messages, + ) + response = response.data[0] +\`\`\` + +### **Define the tool**: Define a tool using the universal [JSON Schema syntax](https://json-schema.org/) syntax. Let's assume we've defined a \`get_current_weather\` tool, which returns the current weather for a specified location. We'll add it in via a \`"tools": tools,\` field. We've also defined a dummy \`get_current_weather\` method at the top. This can be replaced by your own function to fetch real values, for now we're hardcoding it to return a random temperature and cloudy for this example. + +\`\`\`python +from humanloop import Humanloop +import random +import json + +hl = Humanloop(api_key="") + +def get_current_weather(location, unit): + # Your own function call logic + # We will return dummy values in this example + + # Generate random temperature between 0 and 20 + temperature = random.randint(0, 20) + + return {"temperature": temperature, "other": "cloudy"} + + + +def run_conversation(): + # Step 1: send the conversation and available functions to GPT + messages = [ + { + "role": "user", + "content": "What's the weather like in both Boston AND London tonight?", + } + ] + tools = [ + { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. San Francisco, CA", + }, + "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]}, + }, + "required": ["location"], + }, + }, + ] + + response = hl.chat( + project="Assistant", + model_config={"model": "gpt-3.5-turbo-1106", "tools": tools, "max_tokens": 100}, + messages=messages, + ) + response = response.body + output_message = response["data"][0]["output_message"] + + # Remove the deprecated tool_call field (not nessecary for SDK rc verions >0.6) + del output_message["tool_call"] + + # Add the output messge from the previous chat to the messages + messages.append(output_message) + + # TODO - Add assistant response logic +\`\`\` + +### **Check assistant response** + +The code above will make the call to OpenAI with the tool but it does nothing to handle the assistant response. When responding with a tool response the response should have a \`tool_calls\` field. Fetch that value and pass it to your own function. An example of this can be seen below. Replace the \`TODO - Add assistant handling logic\` in your code from above with the following. Multiple tool calls can be returned with the latest OpenAI models \`gpt-4-1106-preview\` and \`gpt-3.5-turbo-1106\`, so below we loop through the tool_calls and populate the response accordingly. + +\`\`\`python + # Step 2: check if GPT wanted to call a tool + if output_message.get("tool_calls"): + # Step 3: call the function + # Note: the JSON response may not always be valid; be sure to handle errors + available_functions = { + "get_current_weather": get_current_weather, + } + + for tool_call in output_message["tool_calls"]: + function_name = tool_call["function"]["name"] + function_args = json.loads(tool_call["function"]["arguments"]) + function_to_call = available_functions[function_name] + function_response = function_to_call( + location=function_args.get("location"), + unit=function_args.get("unit"), + + # TODO - return the tool response back to OpenAI +\`\`\` + +### **Return the tool response** + +We can then return the tool response to OpenAI. This can be done by formatting OpenAI tool message into the relative \`assistant\` message seen below along with a \`tool\` message with the function name and function response. + +\`\`\`python + # Step 2: check if GPT wanted to call a tool + if output_message.get("tool_calls"): + # Step 3: call the function + # Note: the JSON response may not always be valid; be sure to handle errors + available_functions = { + "get_current_weather": get_current_weather, + } + + for tool_call in output_message["tool_calls"]: + function_name = tool_call["function"]["name"] + function_args = json.loads(tool_call["function"]["arguments"]) + function_to_call = available_functions[function_name] + function_response = function_to_call( + location=function_args.get("location"), + unit=function_args.get("unit"), + ) + + # Step 4: send the response back to the model per function call + messages.append( + { + "role": "tool", + "content": json.dumps(function_response), + "tool_call_id": tool_call["id"], + } + ) + + second_response = hl.chat( + project="Assistant", + model_config={ + "model": "gpt-3.5-turbo-1106", + "tools": tools, + "max_tokens": 500, + }, + messages=messages, + ) + return second_response +\`\`\` + +### **Review assistant response** + +The assistant should respond with a message that incorporates the parameters you provided, for example: \`The current weather in Boston is 22 degrees and cloudy.\` The above can be run by adding the python handling logic at the both of your file: + +\`\`\`python +if __name__ == "__main__": + response = run_conversation() + response = response.data[0].output + # Print to console the response from OpenAI with the formatted message + print(response) +\`\`\` + +The full code from this example can be seen below: + +\`\`\`python +from humanloop import Humanloop +import random +import json + +hl = Humanloop( + api_key="", +) + + +def get_current_weather(location, unit): + # Your own function call logic + # We will return dummy values in this example + + # Generate random temperature between 0 and 20 + temperature = random.randint(0, 20) + + return {"temperature": temperature, "other": "cloudy"} + + +def run_conversation(): + # Step 1: send the conversation and available functions to GPT + messages = [ + { + "role": "user", + "content": "What's the weather like in both Boston AND London tonight?", + } + ] + tools = [ + { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. San Francisco, CA", + }, + "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]}, + }, + "required": ["location"], + }, + }, + ] + + response = hl.chat( + project="Assistant", + model_config={"model": "gpt-3.5-turbo-1106", "tools": tools, "max_tokens": 100}, + messages=messages, + ) + response = response.body + output_message = response["data"][0]["output_message"] + + # Remove the deprecated tool_call field (not nessecary for SDK rc verions >0.6) + del output_message["tool_call"] + + # Add the output messge from the previous chat to the messages + messages.append(output_message) + + # Step 2: check if GPT wanted to call a tool + if output_message.get("tool_calls"): + # Step 3: call the function + # Note: the JSON response may not always be valid; be sure to handle errors + available_functions = { + "get_current_weather": get_current_weather, + } + + for tool_call in output_message["tool_calls"]: + function_name = tool_call["function"]["name"] + function_args = json.loads(tool_call["function"]["arguments"]) + function_to_call = available_functions[function_name] + function_response = function_to_call( + location=function_args.get("location"), + unit=function_args.get("unit"), + ) + + # Step 4: send the response back to the model per function call + messages.append( + { + "role": "tool", + "content": json.dumps(function_response), + "tool_call_id": tool_call["id"], + } + ) + + second_response = hl.chat( + project="Assistant", + model_config={ + "model": "gpt-3.5-turbo-1106", + "tools": tools, + "max_tokens": 500, + }, + messages=messages, + ) + return second_response + + +if __name__ == "__main__": + response = run_conversation() + response = response.data[0]output + # Print to console the response from OpenAI with the formatted message + print(response) + + +\`\`\` + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-a-tool-with-the-sdk#install-and-initialize-the-sdk", + "title": "Install and initialize the SDK", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + ], + "description": "Learn how to create a JSON Schema tool that can be reused across multiple Prompts. + +Managing and versioning a Tool seperately from your Prompts + +It's possible to re-use tool definitions them across multiple Prompts. You achieve this by having a Prompt file which defines a JSON schema, and linking them to your Prompt. + +You can achieve this by first defining an instance of a \`JSON Schema\` tool in your global Tools tab. Here you can define a tool once, such as \`get_current_weather(location: string, unit: 'celsius' | 'fahrenheit')\`, and then link that to as many model configs as you need within the Editor as shown below. + +Importantly, updates to the \`get_current_weather\` \`JSON Schema\` tool defined here will then propagate automatically to all the model configs you've linked it to, without having to publish new versions of the prompt.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/link-jsonschema-tool", + "title": "Link a JSON Schema Tool", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + ], + "description": "- A Humanloop account - you can create one by going to our sign up page. +- Be on a paid plan - your organization has been upgraded from the Free tier. +- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. + +To create a JSON Schema tool that can be reusable across your organization, follow the following steps:", + "indexSegmentId": "0", + "slug": "docs/v4/guides/link-jsonschema-tool#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + ], + "description": " + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) + + + + +### Create a Tool file + +Click the 'New File' button on the homepage or in the sidebar. + +### Select the **Json Schema** Tool type + +### Define your tool + +Set the \`name\`, \`description\`, and \`parameters\` values. Our guide for using [Tool Calling in the Prompt Editor](./create-a-tool-in-the-editor) can be a useful reference in this case. We can use the \`get_current_weather\` schema in this case. Paste the following into the dialog: + +\`\`\`json +{ + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": ["celsius", "fahrenheit"] + } + }, + "required": ["location"] + } +} +\`\`\` + +### Press the **Create** button. + +### Navigate to the **Editor** + +Make sure you are using a model that supports tool calling, such as \`gpt-4o\`. + + + +See the [Models page](/docs/supported-models) for a list of models that support tool calling. + + + +### **Add Tool** to the Prompt definition. + +### Select 'Link existing Tool' + +In the dropdown, go to the **Link existing tool** option. You should see your \`get_current_weather\` tool, click on it to link it to your editor. + + + +### Test that the Prompt is working with the tool + +Now that your tool is linked you can start using it as you would normally use an inline tool. In the **Chat** section, in the **User** input, enter "What is the weather in london?" + +Press the **Run** button. + +You should see the **Assistant** respond with the tool response and a new **Tool** field inserted to allow you to insert an answer. In this case, put in \`22\` into the tool response and press **Run**. + + + +The model will respond with \`The current weather in London is 22 degrees\`. + +### Save the Prompt + +You've linked a tool to your model config, now let's save it. Press the **Save** button and name your model config \`weather-model-config\`. + +### (Optional) Update the Tool + +Now that's we've linked your \`get_current_weather\` tool to your model config, let's try updating the base tool and see how it propagates the changes down into your saved \`weather-model-config\` config. Navigate back to the Tools in the sidebar and go to the Editor. + +### Change the tool. + +Let's update both the name, as well as the required fields. For the name, update it to \`get_current_weather_updated\` and for the required fields, add \`unit\` as a required field. The should look like this now: + +\`\`\`json +{ + "name": "get_current_weather_updated", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": ["celsius", "fahrenheit"] + } + }, + "required": ["location", "unit"] + } +} +\`\`\` + +### Save the Tool + +Press the **Save** button, then the following **Continue** button to confirm. + +Your tool is now updated. + +### Try the Prompt again + +Navigate back to your previous project, and open the editor. You should see the \`weather-model-config\` loaded as the active config. You should also be able to see the name of your previously linked tool in the Tools section now says \`get_current_weather_updated\`. + +In the Chat section enter in again, \`What is the weather in london?\`, and press **Run** again. + +### Check the response + +You should see the updated tool response, and how it now contains the \`unit\` field. Congratulations, you've successfully linked a JSON Schema tool to your model config. + + + + + + + When updating your organization-level JSON Schema tools, remember that the + change will affect all the places you've previously linked the tool. Be + careful when making updates to not inadvertently change something you didn't + intend. +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/link-jsonschema-tool#creating-and-linking-a-json-schema-tool", + "title": "Creating and linking a JSON Schema Tool", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + ], + "description": "Learn how to use the Snippet tool to manage common text snippets that you want to reuse across your different prompts. + +Manage common text snippets in your Prompts + +The Humanloop Snippet tool supports managing common text 'snippets' (or 'passages', or 'chunks') that you want to reuse across your different prompts. A Snippet tool acts as a simple key/value store, where the key is the name of the common re-usable text snippet and the value is the corresponding text. + +For example, you may have some common persona descriptions that you found to be effective across a range of your LLM features. Or maybe you have some specific formatting instructions that you find yourself re-using again and again in your prompts. + +Instead of needing to copy and paste between your editor sessions and keep track of which projects you edited, you can instead inject the text into your prompt using the Snippet tool. + +---", + "indexSegmentId": "0", + "slug": "docs/v4/guides/snippet-tool", + "title": "Use the Snippet Tool", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/snippet-tool#create-and-use-a-snippet-tool", + "title": "Create and use a Snippet Tool", + }, + ], + "description": "- A Humanloop account - you can create one by going to our sign up page. +- Be on a paid plan - your organization has been upgraded from the Free tier. +- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. + + + The Snippet tool is not available for the Free tier. Please contact us if you + wish to learn more about our [Enterprise plan](https://humanloop.com/pricing) + + +To create and use a snippet tool, follow the following steps: + + +### Navigate to the [tools tab](https://app.humanloop.com/hl-test/tools) in your organisation and select the Snippet tool card. + + + +### Name the tool + +Name it\`assistant-personalities\` and give it a description \`Useful assistant personalities\`. + +### Add a snippet called "helpful-assistant" + +In the initial box add \`helpful-assistant\` and give it a value of \`You are a helpful assistant. You like to tell jokes and if anyone asks your name is Sam.\` + +### Add another snippet called "grumpy-assistant" + +Let's add another key-value pair, so press the **Add a key/value pair** button and add a new key of \`grumpy-assistant\` and give it a value of \`You are a grumpy assistant. You rarely try to help people and if anyone asks your name is Freddy.\`. + + + +### Press **Create Tool**. + +Now your Snippets are set up, you can use it to populate strings in your prompt templates across your projects. + +### Navigate to the **Editor** + +Go to the Editor of your previously created project. + +### Add \`{{ assistant-personalities(key) }}\` to your prompt + +Delete the existing prompt template and add \`{{ assistant-personalities(key) }}\` to your prompt. + + +Double curly bracket syntax is used to call a tool in the editor. Inside the curly brackets you put the tool name, e.g. \`{{ (key) }}\`. + + +### Enter the key as an input + +In the input area set the value to \`helpful-assistant\`. The tool requires an input value to be provided for the key. When adding the tool an inputs field will appear in the top right of the editor where you can specify your \`key\`. + +### Press the **Run** button + +Start the chat with the LLM and you can see the response of the LLM, as well as, see the key you previously defined add in the Chat on the right. + + + +### Change the key to \`grumpy-assistant\`. + + + If you want to see the corresponding snippet to the key you either need to + first run the conversation to fetch the string and see it in the preview. + + +### Play with the LLM + +Ask the LLM, \`I'm a customer and need help solving this issue. Can you help?'\`. You should see a grumpy response from "Freddy" now. + +If you have a specific key you would like to hardcode in the prompt, you can define it using the literal key value: \`{{ ("key") }}\`, so in this case it would be \`{{ assistant-personalities("grumpy-assistant") }}\`. Delete the \`grumpy-assistant\` field and add it into your chat template. + +### **Save** your Prompt. + +If you're happy with you're grumpy assistant, save this new version of your Prompt. + + + + + +The Snippet tool is particularly useful because you can define passages of text once in a Snippet tool and reuse them across multiple prompts, without needing to copy/paste them and manually keep them all in sync. Editing the values in your tool allows the changes to automatically propagate to the model configs when you update them, as long as the key is the same. + + + Since the values for a Snippet are saved on the Tool, not the Prompt, changing + the values (or keys) defined in your Snippet tools could affect the relative + propmt's behaviour that won't be captured by the Prompt's version. This could + be exactly what you intend, however caution should still be used make sure the + changes are expected. +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/snippet-tool#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + ], + "description": "Learn how to set up a RAG system using the Pinecone integration to enrich your prompts with relevant context from a data source of documents. + +Set up a RAG system using the Pinecone integration + +In this guide we will set up a Humanloop Pinecone tool and use it to enrich a prompt with the relevant context from a data source of documents. This tool combines [Pinecone's](https://www.pinecone.io/) [semantic search](./key-concepts#semantic-search) with [OpenAI's embedding models](https://platform.openai.com/docs/guides/embeddings). + +---", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search", + "title": "Set up semantic search (RAG)", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + ], + "description": "- A Humanloop account - you can create one by going to our [sign up page](https://app.humanloop.com/signup). +- A Pinecone account - you can create one by going to their [sign up page](https://app.pinecone.io/?sessionType=signup). +- Python installed - you can download and install Python by following the steps on the [Python download page](https://www.python.org/downloads/). + + + If you have an existing Pinecone index that was created using one of [OpenAI's + embedding models](https://platform.openai.com/docs/guides/embeddings), you can + skip to section: **Setup Humanloop** + + +---", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#set-up-pinecone", + "title": "Set up Pinecone", + }, + ], + "description": "If you already have the Pinecone SDK installed, skip to the next section. + + +### Install the Pinecone Python SDK in your terminal: + \`\`\`shell + pip install pinecone-client + \`\`\` +### Start a Python interpreter: + \`\`\`shell + python + \`\`\` +### Go to the [Pinecone console](https://app.pinecone.io/) API Keys tab and create an API key - copy the key \`value\` and the \`environment\`. +### Test your Pinecone API key and environment by initialising the SDK + \`\`\`python + >>> import pinecone + >>> pinecone.init(api_key="", environment="") + \`\`\` + +***", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search#install-the-pinecone-sdk", + "title": "Install the Pinecone SDK", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#set-up-pinecone", + "title": "Set up Pinecone", + }, + ], + "description": "Now we'll initialise a Pinecone index, which is where we'll store our vector embeddings. We will be using OpenAI's [ada model](https://platform.openai.com/docs/guides/embeddings/what-are-embeddings) to create vectors to save to Pinecone, which has an output dimension of 1536 that we need to specify upfront when creating the index: + +\`\`\`python +import pinecone + +# Initialise the SDK +pinecone.init(api_key="", environment="") + +# Create index +# We can reference the dimension of the embeddings on OpenAI +# https://platform.openai.com/docs/guides/embeddings/what-are-embeddings +pinecone.create_index('humanloop-demo', dimension=1536) + +# Connect to the index +index = pinecone.Index('humanloop-demo') +\`\`\` + +---", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search#create-a-pinecone-index", + "title": "Create a Pinecone index", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#set-up-pinecone", + "title": "Set up Pinecone", + }, + ], + "description": "Now that you have a Pinecone index, we need some data to put in it. In this section we'll pre-process some data ready for embedding and storing to the index in the next section. + +We'll use the awesome [Hugging Face datasets](https://huggingface.co/docs/datasets/load_hub) to source a demo dataset (following the [Pinecone quick-start guide](https://docs.pinecone.io/docs/semantic-text-search)). In practice you will customise this step to your own use case. + + +### First install Hugging Face datasets using pip: + +\`\`\`Text Shell +pip install datasets +\`\`\` + +### Next download the Quora dataset: + +\`\`\`python +from datasets import load_dataset + +dataset = load_dataset('quora', split='train') +\`\`\` + +### Now we can preview the dataset - it contains ~400K pairs of natural language questions from Quora: + +\`\`\`python +print(dataset[:5]) +\`\`\` + +\`\`\` +{'questions': [{'id': [1, 2], + 'text': ['What is the step by step guide to invest in share market in india?', + 'What is the step by step guide to invest in share market?']}, + {'id': [3, 4], + 'text': ['What is the story of Kohinoor (Koh-i-Noor) Diamond?', + 'What would happen if the Indian government stole the Kohinoor (Koh-i-Noor) diamond back?']}, + {'id': [5, 6], + 'text': ['How can I increase the speed of my internet connection while using a VPN?', + 'How can Internet speed be increased by hacking through DNS?']}, + {'id': [7, 8], + 'text': ['Why am I mentally very lonely? How can I solve it?', + 'Find the remainder when [math]23^{24}[/math] is divided by 24,23?']}, + {'id': [9, 10], + 'text': ['Which one dissolve in water quikly sugar, salt, methane and carbon di oxide?', + 'Which fish would survive in salt water?']}], + 'is_duplicate': [False, False, False, False, False]} +\`\`\` + +### Extract the text from the questions into a single list ready for embedding: + +\`\`\`python Python +questions = [] + +for record in dataset['questions']: + questions.extend(record['text']) + +# remove duplicates +questions = list(set(questions)) +print('\\n'.join(questions[:5])) +print(f"Number of questions: {len(questions)}") +\`\`\` + +\`\`\`text +I am currently training at IBM in .NET. What are the probable locations IBM has to offer for this domain? +Can someone suggest some songs like this one? +How do sodium bicarbonate and HCL react? +Who inspires you most and why? +\`\`\` + + +***", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search#preprocess-the-data", + "title": "Preprocess the data", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#set-up-pinecone", + "title": "Set up Pinecone", + }, + ], + "description": "Now that you have a Pinecone index and a dataset of text chunks, we can populate the index with embeddings before moving on to Humanloop. We'll use one of OpenAI's embedding models to create the vectors for storage.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search#populate-pinecone", + "title": "Populate Pinecone", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#set-up-pinecone", + "title": "Set up Pinecone", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#populate-pinecone", + "title": "Populate Pinecone", + }, + ], + "description": "If you already have your OpenAI key and the SDK installed, skip to the next section. + + +### Install the OpenAI SDK using pip: + +\`\`\`Text Shell +$ pip install openai +\`\`\` + +### Initialise the SDK (you'll need an OpenAI key from your [OpenAI account](https://platform.openai.com/account/api-keys)) + +\`\`\`python +import openai + +openai.api_key = "" +\`\`\` + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search#install-and-initialise-open-ai-sdk", + "title": "Install and initialise Open AI SDK", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#set-up-pinecone", + "title": "Set up Pinecone", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#populate-pinecone", + "title": "Populate Pinecone", + }, + ], + "description": "If you already have a Pinecone index set up, skip to the next section. + + +### Embed the questions and store them in Pinecone with the corresponding text as metadata: + +\`\`\`python Python +# For the sake of the demo we just use a small subset of the data +embed_questions = questions[:100] + +for i, question in enumerate(embed_questions): + # Embed the question + embedding = client.embeddings.create(input=question, model="text-embedding-ada-002").data[0].embedding + + # Upsert to Pinecone - expects tuples of (id, vector, metadata to associate to vector) + index.upsert([(str(i), embedding, {"text": question})]) + +# check number of records in the index +index.describe_index_stats() +\`\`\` + +### You can now try out the semantic search with a test question: + +\`\`\`python +test_query = "What is the first law of Thermodynamics?" + +# create the query vector +test_query = openai.Embedding.create( + input=test_query, model="text-embedding-ada-002" + ).data[0].embedding + +# run the query +result = index.query(test_query, top_k=3, include_metadata=True) +print(result) +\`\`\` + +You should see semantically similar questions retrieved with the corresponding similarity scores: + +\`\`\` +{'matches': [{'id': '72', + 'metadata': {'text': 'Is kinetic energy gained when it is moving ' + 'at a constant speed or when it is ' + 'accelerating?'}, + 'score': 0.792976439, + 'values': []}, + {'id': '28', + 'metadata': {'text': 'Is energy in vacuum real? How do we know ' + 'that this energy that can be borrowed and ' + 'returned immediately is real if virtual ' + "particles didn't exist then?"}, + 'score': 0.787870169, + 'values': []}, + {'id': '425', + 'metadata': {'text': 'What is the most intriguing scientific ' + 'paradox?'}, + 'score': 0.78692925, + 'values': []}], + 'namespace': ''} +\`\`\` + + +***", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search#populate-the-index", + "title": "Populate the index", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#set-up-humanloop", + "title": "Set up Humanloop", + }, + ], + "description": "You're now ready to configure a Pinecone tool in Humanloop: + + + +### Create a New Tools + +From the Humanloop dashboard or the sidebar, click 'New File' and select Tool. + +### Select Pinecone Search + +Select the **Pinecone Search** option + +### Configure Pinecone and OpenAI + +These should be the same values you used when setting +up your Pinecone index in the previous sections. All these values are editable +later. + +1. **For Pinecone:** populate values for \`Name\` (use _quora_search_), + \`pinecone_key\`, \`pinecone_environment\`, \`pinecone_index\` (note: we named our + index \`humanloop-demo\`). The name will be used to create the signature for the + tool that you will use in your prompt templates in the next section. +2. **For OpenAI**: populate the \`openai_key\` and \`openai_model\` (note: we used the + \`text-embedding-ada-002\` model above) + +### Save the tool + +By selecting **Save.** + + + +An active tool for _quora_search_ will now appear on the tools tab and you're ready to use it within a prompt template. + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search#configure-pinecone", + "title": "Configure Pinecone", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/tool-calling", + "title": "Tools", + }, + { + "slug": "docs/v4/guides/set-up-semantic-search#set-up-humanloop", + "title": "Set up Humanloop", + }, + ], + "description": "Now that we have a Pinecone tool configured we can use this to pull relevant context into your prompts. + +This is an effective way to enrich your LLM applications with knowledge from your own internal documents and also help fix hallucinations. + + + +### Navigate to the Editor of your Prompt + +### Copy and paste the following text into the **Prompt template** box: + +\`\`\`text +You are a helpful intern. +Very succinctly summarise the types of questions people are asking on Quora about: {{topic}} + +Reference the following search results of Quora questions {{quora_search(topic, 10)}}: + +Summary: + +\`\`\` + +### On the right hand side under **Completions**, enter the following three examples of topics: Google, Physics and Exercise. + +### Press the **Run all** button bottom right (or use the keyboard shortcut \`Command + Enter\`). + +On the right hand side the results from calling the Pinecone tool for the specific topic will be shown highlighted in purple and the final summary provided by the LLM that uses these results will be highlighted in green. + + + + + + + +Each active tool in your organisation will have a unique signature that you can use to specify the tool within a prompt template. + +You can find the signature in the pink box on each tool card on the **Tools** page. + +You can also use double curly brackets - \`{{\` - within the prompt template in the Prompt Editor to see a dropdown of available tools. + +In the case of **Pinecone** tools, the signature takes two positional arguments: \`query\`(the query text passed to Pinecone) and \`top_k\`(the number of similar chunks to retrieve from Pinecone for the query). + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/set-up-semantic-search#enhance-your-prompt-template", + "title": "Enhance your Prompt template", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "In this guide we will demonstrate how to use Humanloop’s fine-tuning workflow to produce improved models leveraging your user feedback data. + +In this guide we will demonstrate how to use Humanloop’s fine-tuning workflow to produce improved models leveraging your user feedback data. + + + This feature is not available for the Free tier. Please contact us if you wish + to learn more about our [Enterprise plan](https://humanloop.com/pricing) +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/finetune-a-model", + "title": "Fine-tune a model", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. +- You have integrated \`humanloop.complete_deployed()\` or the \`humanloop.chat_deployed()\` endpoints, along with the \`humanloop.feedback()\` with the [API](https://www.postman.com/humanloop/workspace/humanloop) or [Python SDK](./generate-and-log-with-the-sdk). + + + +A common question is how much data do I need to fine-tune effectively? Here we +can reference the [OpenAI +guidelines](https://beta.openai.com/docs/guides/fine-tuning): + +> _The more training examples you have, the better. We recommend having at least a couple hundred examples. In general, we've found that each doubling of the dataset size leads to a linear increase in model quality._ + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/finetune-a-model#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "The first part of fine-tuning is to select the data you wish to fine-tune on. + + +### Go to your Humanloop project and navigate to **Logs** tab. + +### Create a **filter** + +Using the **+ Filter** button above the table of the logs you would like to fine-tune on. + +For example, all the logs that have received a positive upvote in the feedback captured from your end users. + + + +### Click the **Actions** button, then click the **New fine-tuned model** button to set up the finetuning process. + +### Enter the appropriate parameters for the fine-tuned model. + +1. Enter a **Model** name. This will be used as the suffix parameter in OpenAI’s fine-tune interface. For example, a suffix of "custom-model-name" would produce a model name like \`ada:ft-your-org:custom-model-name-2022-02-15-04-21-04\`. +2. Choose the **Base model** to fine-tune. This can be \`ada\`, \`babbage\`, \`curie\`, or \`davinci\`. +3. Select a **Validation split** percentage. This is the proportion of data that will be used for validation. Metrics will be periodically calculated against the validation data during training. +4. Enter a **Data snapshot name**. Humanloop associates a data snapshot to every fine-tuned model instance so it is easy to keep track of what data is used (you can see yourexisting data snapshots on the **Settings/Data snapshots** page) + + + +### Click **Create** + +The fine-tuning process runs asynchronously and may take up to a couple of hours to complete depending on your data snapshot size. + +### See the progress + +Navigate to the **Fine-tuning** tab to see the progress of the fine-tuning process. + +Coming soon - notifications for when your fine-tuning jobs have completed. + + + +### When the **Status** of the fine-tuned model is marked as **Successful**, the model is ready to use. + + + +🎉 You can now use this fine-tuned model in a Prompt and evaluate its performance.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/finetune-a-model#fine-tuning", + "title": "Fine-tuning", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "How to create, share and manage you Humanloop API keys. The API keys allow you to access the Humanloop API programmatically in your app. + +API keys allow you to access the Humanloop API programmatically in your app.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-and-revoke-api-keys", + "title": "Manage API keys", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": " + +### Go to your Organization's **[API Keys page](https://app.humanloop.com/account/api-keys)**. + +### Click the **Create new API key** button. + +### Enter a name for your API key. + +Choose a name that helps you identify the key's purpose. You can't change the name of an API key after it's created. + +### Click **Create**. + + + +### Copy the generated API key + +Save it in a secure location. You will not be shown the full API key again. + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-and-revoke-api-keys#create-a-new-api-key", + "title": "Create a new API key", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "You can revoke an existing API key if it is no longer needed. + + + When an API key is revoked, future API requests that use this key will be + rejected. Any systems that are dependent on this key will no longer work. + + + + ### Go to API keys page + +Go to your Organization's **[API Keys +page](https://app.humanloop.com/account/api-keys)**. + +### Identify the API key + +Find the key you wish to revoke by its name or by the displayed trailing characters. + +### Click 'Revoke' + +Click the three dots button on the right of its row to open its menu. +Click **Revoke**. +A confirmation dialog will be displayed. Click **Remove**. + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/create-and-revoke-api-keys#revoke-an-api-key", + "title": "Revoke an API key", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "Inviting people to your organization allows them to interact with your Humanloop projects. + +How to invite collaborators to your Humanloop organization. + +Inviting people to your organization allows them to interact with your Humanloop projects: + +- Teammates will be able to create new model configs and experiments +- Developers will be able to get an API key to interact with projects through the SDK +- Annotators may provide feedback on logged datapoints using the Data tab (in addition to feedback captured from your end-users via the SDK feedback integration)", + "indexSegmentId": "0", + "slug": "docs/v4/guides/invite-collaborators", + "title": "Invite collaborators", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "To invite users to your organization: + + + +### Go to your organization's **[Members page](https://app.humanloop.com/account/members)** + +### Enter the **email address** + +Enter the email of the person you wish to invite into the **Invite members** box. + + + +### Click **Send invite**. + +An email will be sent to the entered email address, inviting them to the organization. If the entered email address is not already a Humanloop user, they will be prompted to create an account before being added to the organization. + + + +🎉 Once they create an account, they can view your projects at the same URL to begin collaborating.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/invite-collaborators#invite-users", + "title": "Invite Users", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": "Environments enable you to deploy model configurations and experiments, making them accessible via API, while also maintaining a streamlined production workflow. + +In this guide we will demonstrate how to create and use environments. + +[Environments](/docs/environments) enable you to deploy model configurations and experiments, making them accessible via API, while also maintaining a streamlined production workflow. These environments are created at the organizational level and can be utilized on a per-project basis.", + "indexSegmentId": "0", + "slug": "docs/v4/guides/deploy-to-an-environment", + "title": "Deploy to environments", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": " +### Go to your Organization's [Environments](https://app.humanloop.com/account/environments) page. + +### Click the **+ Environment** button to open the new environment dialog. + +### Assign a custom name to the environment. + +### Click **Create**. + + + + + +---", + "indexSegmentId": "0", + "slug": "docs/v4/guides/deploy-to-an-environment#create-an-environment", + "title": "Create an environment", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/deploy-to-an-environment#deploying-to-an-environment", + "title": "Deploying to an environment", + }, + ], + "description": "- You already have a Prompt — if not, please follow our [Prompt creation](/docs/guides/create-prompt) guide first. +- Ensure that your project has existing model configs that you wish to use. + +To deploy a model config to an environment: + + +### Navigate to the **Dashboard** of your project. + +### Click the dropdown menu of the environment. + + + +### Click the **Change deployment** button + +### Select a version + +From the model configs or experiments within that project, click on the one that you wish to deploy to the target environment + + + +### Click the **Deploy** button. + + + +---", + "indexSegmentId": "0", + "slug": "docs/v4/guides/deploy-to-an-environment#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/deploy-to-an-environment#calling-the-model-in-the-environment", + "title": "Calling the model in the environment", + }, + ], + "description": "- You have already deployed either a chat or completion model config - if not, please follow the steps in either the [Generate chat responses](./chat-using-the-sdk) or [Generate completions](./completion-using-the-sdk) guides. +- You have multiple environments, with a model config deployed in a non-default environment. See the [Deploying to an environment](#deploying-to-an-environment) section above. + + +The following steps assume you're using an OpenAI model and that you're calling a \`chat\` workflow. The steps needed to target a specific environment for a \`completion\` workflow are similar. + + + +### Navigate to the **Models** tab of your Humanloop project. +### Click the dropdown menu of the environment you wish to use. +### Click the **Use API** menu option. +A dialog will open with code snippets. +Select the language you wish to use (e.g. Python, TypeScript). The value of \`environment\` parameter is the name of environment you wish to target via the chat-deployed call. +An example of this can be seen in the code below. + +\`\`\`python +import os +from humanloop import Humanloop + +HUMANLOOP_API_KEY = os.getenv("HUMANLOOP_API_KEY") + +humanloop = Humanloop(api_key=HUMANLOOP_API_KEY) + +response = humanloop.chat_deployed( + project="YOUR_PROJECT_NAME", + inputs={}, + messages=[{ "role": "user", "content": "Tell a joke" }], + provider_api_keys={ + "openai": "OPENAI_KEY_HERE" + }, + environment="YOUR_ENVIRONMENT_NAME" +) + +print(response.data[0]output) +\`\`\` + + + + +***", + "indexSegmentId": "0", + "slug": "docs/v4/guides/deploy-to-an-environment#prerequisites-1", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + ], + "description": " + Only Enterprise customers can update their default environment +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/deploy-to-an-environment#updating-the-default-environment", + "title": "Updating the default environment", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/guides/create-prompt", + "title": "Guides", + }, + { + "slug": "docs/v4/guides/deploy-to-an-environment#updating-the-default-environment", + "title": "Updating the default environment", + }, + ], + "description": "- You have multiple environments - if not first go through the [Create an + environment](./deploy-to-an-environment) section. + +Every organization will have a default environment. This can be updated by the following: + + + +### Go to your Organization's [Environments](https://app.humanloop.com/account/environments) page. + +### Click on the dropdown menu of an environment that is not already the default. + +### Click the **Make default** option + +A dialog will open asking you if you are certain this is a change you want to make. If so, click the **Make default** button. + +### Verify the default tag has moved to the environment you selected. + + + +", + "indexSegmentId": "0", + "slug": "docs/v4/guides/deploy-to-an-environment#prerequisites-2", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Discover how Humanloop manages prompts, with version control and rigorous evaluation for better performance. + +Prompts define how a large language model behaves. + + + +A Prompt on Humanloop encapsulates the instructions and other configuration for how a large language model should perform a specific task. Each change in any of the following properties creates a new version of the Prompt: + +- the template such as \`Write a song about {{topic}}\` +- the model e.g. \`gpt-4o\` +- all the parameters to the model such as \`temperature\`, \`max_tokens\`, \`top_p\` etc. +- any tools available to the model + +A Prompt is callable in that if you supply the necessary inputs, it will return a response from the model. + +Inputs are defined in the template through the double-curly bracket syntax e.g. \`{{topic}}\` and the value of the variable will need to be supplied when you call the Prompt to create a generation. + +This separation of concerns, keeping configuration separate from the query time data, is crucial for enabling you to experiment with different configurations and evaluate any changes. The Prompt stores the configuration and the query time data are stored in [Logs](./logs), which can then be re-used in Datasets. + + + FYI: Prompts have recently been renamed from 'Projects'. The Project's "Model + Configs" are now just each version of a Prompt. Some of the documentation and + APIs may still refer to Projects and Model Configs. + + + + Note that we use a capitalized "[Prompt](/docs/prompts)" to refer to the + entity in Humanloop, and a lowercase "prompt" to refer to the general concept + of input to the model. + + + + +\`\`\`jsx +--- +model: gpt-4 +temperature: 1.0 +max_tokens: -1 +provider: openai +endpoint: chat +--- + + Write a song about {{topic}} + +\`\`\` + +", + "indexSegmentId": "0", + "slug": "docs/v4/prompts", + "title": "Prompts", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "A Prompt file will have multiple versions as you try out different models, params or templates, but they should all be doing the same task, and in general should be swappable with one-another. + +By versioning your Prompts, you can track how adjustments to the template or parameters influence the LLM's responses. This is crucial for iterative development, as you can pinpoint which versions produce the most relevant or accurate outputs for your specific use case.", + "indexSegmentId": "0", + "slug": "docs/v4/prompts#versioning", + "title": "Versioning", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + { + "slug": "docs/v4/prompts#versioning", + "title": "Versioning", + }, + ], + "description": "You should create a new Prompt for every different ‘task to be done’ with the LLM. For example each of these tasks are things that can be done by an LLM and should be a separate Prompt File: extractive summary, title creator, outline generator etc. + +We've seen people find it useful to also create a Prompt called 'Playground' where they can free form experiment without concern of breaking anything or making a mess of their other Prompts.", + "indexSegmentId": "0", + "slug": "docs/v4/prompts#when-to-create-a-new-prompt", + "title": "When to create a new Prompt", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Prompts are callable as an API. You supply and query-time data such as input values or user messages, and the model will respond with its text output. + +\`\`\`javascript TypeScript +const chatResponse = await humanloop.chatDeployed({ + project: "song writer", + inputs: { + topic: "debugging compiler errors", + }, +}); +\`\`\` + +You can also use Prompts without proxying all requests through Humanloop.", + "indexSegmentId": "0", + "slug": "docs/v4/prompts#using-prompts", + "title": "Using Prompts", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Our \`.prompt\` file format is a serialized version of a model config that is designed to be human-readable and suitable for checking into your version control systems alongside your code. See the [.prompt files reference](./prompt-file-format) reference for more details.", + "indexSegmentId": "0", + "slug": "docs/v4/prompts#serialization-prompt-file", + "title": "Serialization (.prompt file)", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + { + "slug": "docs/v4/prompts#serialization-prompt-file", + "title": "Serialization (.prompt file)", + }, + ], + "description": "The .prompt file is heavily inspired by [MDX](https://mdxjs.com/), with model and hyperparameters specified in a YAML header alongside a JSX-inspired format for your Chat Template.", + "indexSegmentId": "0", + "slug": "docs/v4/prompts#format", + "title": "Format", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + { + "slug": "docs/v4/prompts#serialization-prompt-file", + "title": "Serialization (.prompt file)", + }, + ], + "description": " +\`\`\`jsx Chat +--- +model: gpt-4 +temperature: 1.0 +max_tokens: -1 +provider: openai +endpoint: chat +--- + + You are a friendly assistant. + +\`\`\` +\`\`\`jsx Completion +--- +model: claude-2 +temperature: 0.7 +max_tokens: 256 +top_p: 1.0 +provider: anthropic +endpoint: complete +--- +Autocomplete the sentence. + +Context: {{context}} + +{{sentence}} + +\`\`\` + + +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v4/prompts#basic-examples", + "title": "Basic examples", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Discover how Humanloop manages tools for use with large language models (LLMs) with version control and rigorous evaluation for better performance. + +Tools are functions that can extend your LLMs with access to external data sources and enabling them to take actions. + + + +Tools are functions that can extend your LLMs with access to external data sources and enabling them to take actions. + +Humanloop Tools can be used in multiple ways: + +- by the LLM by [OpenAI function calling](https://platform.openai.com/docs/guides/function-calling)) +- within the Prompt template +- as part of a chain of events such as a Retrieval Tool in a RAG pipeline + +Some Tools are executable within Humanloop, and these offer the greatest utility and convenience. For example, Humanloop has pre-built integrations for Google search and Pinecone have and so these Tools can be executed and the results inserted into the API or Editor automatically.", + "indexSegmentId": "0", + "slug": "docs/v4/tools", + "title": "Tools", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Certain large language models support tool use or "function calling". For these models, you can supply the description of functions and the model can choose to call one or more of them by providing the values to call the functions with. + + + +
+ +Tools all have a functional interface that can be supplied as the JSONSchema needed for function calling. Additionally, if the Tool is executable on Humanloop, the result of any tool will automatically be inserted into the response in the API and in the Editor. + +Tools for function calling can be defined inline in our Editor or centrally managed for an organization.", + "indexSegmentId": "0", + "slug": "docs/v4/tools#tool-use-function-calling", + "title": "Tool Use (Function Calling)", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "You can add a tool call in a prompt template and the result will be inserted into the prompt sent to the model. This allows you to insert retrieved information into your LLMs calls. + +For example, if you have **\`{{ google("population of india") }}\`** in your template, this Google tool will get executed and replaced with the resulting text “**1.42 billion (2024)**” before the prompt is sent to the model. Additionally, if your template contains a Tool call that uses an input variable e.g. **\`{{ google(query) }}\`** this will take the value of the input supplied in the request, compute the output of the Google tool, and insert that result into the resulting prompt that is sent to the model. + +Example of a Tool being used within a Prompt template. This example will mean that this Prompt needs two inputs to be supplied (\`query\`, and \`top_k\`) + +Example of a Tool being used within a Prompt template. This example will mean that this Prompt needs two inputs to be supplied (\`query\`, and \`top_k\`)", + "indexSegmentId": "0", + "slug": "docs/v4/tools#tools-in-a-prompt-template", + "title": "Tools in a Prompt template", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "You can call a Tool within a session of events and post the result to Humanloop. For example in a RAG pipeline, instrumenting your retrieval function as a Tool, enables you to be able to trace through the full sequence of events. The retrieval Tool will be versioned and the logs will be available in the Humanloop UI, enabling you to independently improve that step in the pipeline.", + "indexSegmentId": "0", + "slug": "docs/v4/tools#tools-within-a-chain", + "title": "Tools within a chain", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + { + "slug": "docs/v4/tools#tools-within-a-chain", + "title": "Tools within a chain", + }, + ], + "description": "- *Pinecone Search* - Vector similarity search using Pinecone vector DB and OpenAI embeddings. +- *Google Search* - API for searching Google: [https://serpapi.com/](https://serpapi.com/). +- *GET API* - Send a GET request to an external API.", + "indexSegmentId": "0", + "slug": "docs/v4/tools#third-party-integrations", + "title": "Third-party integrations", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + { + "slug": "docs/v4/tools#tools-within-a-chain", + "title": "Tools within a chain", + }, + ], + "description": "- *Snippet Tool* - Create reusable key/value pairs for use in prompts - see [how to use the Snippet Tool](/docs/guides/snippet-tool). +- *JSON Schema* - JSON schema that can be used across multiple Prompts - see [how to link a JSON Schema Tool](/docs/guides/link-jsonschema-tool).", + "indexSegmentId": "0", + "slug": "docs/v4/tools#humanloop-tools", + "title": "Humanloop tools", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Discover how Humanloop manages datasets, with version control and collaboration to enable you to evaluate and fine-tune your models. + +Datasets are collections of input-output pairs that you can use within Humanloop for evaluations and fine-tuning. + + + +A datapoint consists of three things: + +- **Inputs**: a collection of prompt variable values which are interpolated into the prompt template of your model config at generation time (i.e. they replace the \`{{ variables }}\` you define in the prompt template). +- **Messages**: for chat models, as well as the prompt template, you may have a history of prior chat messages from the same conversation forming part of the input to the next generation. Datapoints can have these messages included as part of the input. +- **Target**: data representing the expected or intended output of the model. In the simplest case, this can simply be a string representing the exact output you hope the model produces for the example represented by the datapoint. In more complex cases, you can define an arbitrary JSON object for \`target\` with whatever fields are necessary to help you specify the intended behaviour. You can then use our evaluations feature to run the necessary code to compare the actual generated output with your \`target\` data to determine whether the result was as expected. + +
+ + + +Datasets can be created via CSV upload, converting from existing Logs in your project, or by API requests.", + "indexSegmentId": "0", + "slug": "docs/v4/datasets", + "title": "Datasets", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Learn about LLM Evaluation using Evaluators. Evaluators are functions that can be used to judge the output of Prompts, Tools or other Evaluators. + +Evaluators on Humanloop are functions that can be used to judge the output of Prompts, Tools or other Evaluators. + + + +Evaluators are functions which take an LLM-generated Log as an argument and return an **evaluation**. The evaluation is typically either a boolean or a number, indicating how well the model performed according to criteria you determine based on your use case. + +Evaluators can be used for monitoring live data as well as running evaluations.", + "indexSegmentId": "0", + "slug": "docs/v4/evaluators", + "title": "Evaluators", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "There are three types of Evaluators: AI, code, and human. + +- **Python** - using our in-browser editor, define simple Python functions to act as evaluators +- AI - use a large language model to evaluate another LLM! Our evaluator editor allows you to define a special-purpose prompt which passes data from the underlying log to a language model. This type of evaluation is particularly useful for more subjective evaluation such as verifying appropriate tone-of-voice or factuality given an input set of facts. +- Human - collate human feedback against the logs", + "indexSegmentId": "0", + "slug": "docs/v4/evaluators#types-of-evaluators", + "title": "Types of Evaluators", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Evaluation is useful for both testing new model configs as you develop them and for monitoring live deployments that are already in production. + +To handle these different use cases, there are two distinct modes of evaluators - **online** and **offline**.", + "indexSegmentId": "0", + "slug": "docs/v4/evaluators#modes-monitoring-vs-testing", + "title": "Modes: Monitoring vs. testing", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + { + "slug": "docs/v4/evaluators#modes-monitoring-vs-testing", + "title": "Modes: Monitoring vs. testing", + }, + ], + "description": "Online evaluators are for use on logs generated in your project, including live in production. Typically, they are used to monitor deployed model performance over time. + +Online evaluators can be set to run automatically whenever logs are added to a project. The evaluator takes the \`log\` as an argument.", + "indexSegmentId": "0", + "slug": "docs/v4/evaluators#online", + "title": "Online", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + { + "slug": "docs/v4/evaluators#modes-monitoring-vs-testing", + "title": "Modes: Monitoring vs. testing", + }, + ], + "description": "Offline evaluators are for use with predefined test **[datasets](./datasets)** in order to evaluate models as you iterate in your prompt engineering workflow, or to test for regressions in a CI environment. + +A test dataset is a collection of **datapoints**, which are roughly analogous to unit tests or test cases in traditional programming. Each datapoint specifies inputs to your model and (optionally) some target data. + +When you run an offline evaluation, Humanloop iterates through each datapoint in the dataset and triggers a fresh LLM generation using the inputs of the testcase and the model config being evaluated. For each test case, your evaluator function will be called, taking as arguments the freshly generated \`log\` and the \`testcase\` datapoint that gave rise to it. Typically, you would write your evaluator to perform some domain-specific logic to determine whether the model-generated \`log\` meets your desired criteria (as specified in the datapoint 'target').", + "indexSegmentId": "0", + "slug": "docs/v4/evaluators#offline", + "title": "Offline", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Conceptually, evaluation runs have two components: + +1. Generation of logs from the datapoints +2. Evaluating those logs. + +Using the Evaluations API, Humanloop offers the ability to generate logs either within the Humanloop runtime, or self-hosted. Similarly, evaluations of the logs can be performed in the Humanloop runtime (using evaluators that you can define in-app) or self-hosted (see our [guide on self-hosted evaluations](./self-hosted-evaluations)). + +In fact, it's possible to mix-and-match self-hosted and Humanloop-runtime generations and evaluations in any combination you wish. When creating an evaluation via the API, set the \`hl_generated\` flag to \`False\` to indicate that you are posting the logs from your own infrastructure (see our [guide on evaluating externally-generated logs](./evaluating-externally-generated-logs)). Include an evaluator of type \`External\` to indicate that you will post evaluation results from your own infrastructure. You can include multiple evaluators on any run, and these can include any combination of \`External\` (i.e. self-hosted) and Humanloop-runtime evaluators.", + "indexSegmentId": "0", + "slug": "docs/v4/evaluators#humanloop-hosted-vs-self-hosted", + "title": "Humanloop-hosted vs. self-hosted", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Logs contain the inputs and outputs of each time a Prompt, Tool or Evaluator is called. + +Logs contain the inputs and outputs of each time a Prompt, Tool or Evaluator is called. + +All [Prompts](./prompts), [Tools](./tools) and [Evaluators](./evaluators) produce Logs. A Log contains the \`inputs\` and the \`output\`s and tracks which version of Prompt/Tool/Evaluator was used. + +For the example of a Prompt above, the Log would have one \`input\` called ‘topic’ and the \`output\` will be the completion. + + + +![A Log which contains an input query](file:7b05abc5-c1bd-46e2-806c-70edf6fab22a) + +", + "indexSegmentId": "0", + "slug": "docs/v4/logs", + "title": "Logs", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Deployment environments enable you to control the deployment lifecycle of your Prompts and other files between development and production environments. + +Deployment environments enable you to control the deployment lifecycle of your Prompts and other files between development and production environments. + +Environments enable you to deploy your model configurations to specific environments, allowing you to separately manage the deployment workflow between testing and production. With environments, you have the control required to manage the full LLM deployment lifecycle.", + "indexSegmentId": "0", + "slug": "docs/v4/environments", + "title": "Environments", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Every organisation automatically receives a default production environment. You can create additional environments with custom names by visiting your organisation's [environments page](https://app.humanloop.com/account/environments). + + + Only Enterprise customers can create more than one environment + + +The environments you define for your organisation will be available for each project and can be viewed in the project dashboard once created. + +![](file:a780c738-2da6-432c-95bb-158ea103d44d)", + "indexSegmentId": "0", + "slug": "docs/v4/environments#managing-your-environments", + "title": "Managing your environments", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + { + "slug": "docs/v4/environments#managing-your-environments", + "title": "Managing your environments", + }, + ], + "description": "By default, the production environment is marked as the Default environment. This means that all API calls targeting the "Active Deployment," such as [Get Active Config](/doc/reference/projects_getactiveconfig) or [Chat Deployed](/api-reference/chats/createdeployed) will use this environment. You can rename the default environment on the [organisation's environments](https://app.humanloop.com/account/environments) page. + + + Renaming the environments will take immediate effect, so ensure that this + change is planned and does not disrupt your production workflows. +", + "indexSegmentId": "0", + "slug": "docs/v4/environments#the-default-environment", + "title": "The default environment", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Once created on the environments page, environments can be used for each project and are visible in the respective project dashboards. + +You can deploy directly to a specific environment by selecting it in the **Deployments** section. + +![](file:1d3bf28c-5591-47b6-817a-b10238bd7935) + +Alternatively, you can deploy to multiple environments simultaneously by deploying a Model Config from either the Editor or the Model Configs table.", + "indexSegmentId": "0", + "slug": "docs/v4/environments#using-environments", + "title": "Using environments", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "![](file:3e7ce42e-e625-49cd-abbd-51965ca1d3f4) + +For v4.0 API endpoints that support Active Deployments, such as [Get Active Config](/api-reference/projects/getactiveconfig) or [Chat Deployed](/api-reference/chats/createdeployed), you can now optionally point to a model configuration deployed in a specific environment by including an optional additional \`environment\` field. + +You can find this information in our v4.0 API Documentation or within the environment card in the Project Dashboard under the "Use API" option. + +Clicking on the "Use API" option will provide code snippets that demonstrate the usage of the \`environment\` variable in practice. + +![](file:67da63be-577c-4fe7-a35a-78522f699c41)", + "indexSegmentId": "0", + "slug": "docs/v4/environments#using-environments-via-api", + "title": "Using environments via API", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Learn about the core entities and concepts in Humanloop. Understand how to use them to manage your projects and improve your models.", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts", + "title": "Key Concepts", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": " + Projects are now [Prompts](./prompts) (and we've added [Tools](./tools) and + [Evaluators](./evaluators) special types). The V4 API still refers to projects + however as the main way to interact with your Prompts. + + +A project groups together the data, prompts and models that are all achieving the same task to be done using the large language model. + +For example, if you have a task of ‘generate google ad copy’, that should be a project. If you have a summarization that works on top of tweets, that should be a project. You should have many separate projects for each of your tasks on top of the LLM. + + + +Screenshot from Peppertype AI Copywriting assistant, each of these ‘apps’ corresponds to a project within Humanloop for managing the best way to get generations from large language models. + +", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#projects", + "title": "Projects", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "The Humanloop platform gives you the ability to use and improve large language models like GPT‑3. There are many different models from multiple providers. The models may be different sizes, may have been trained differently, and are likely to perform differently. Humanloop gives you the ability to find the best model for your situation and optimise performance and cost. + +**Model Provider** is where the model is from. For example, ‘OpenAI’, or ‘AI21’ etc. + +**Model** refers to the actual AI model that should be used. Such as text-davinci-002 (large, relatively expensive, highly capable model trained to follow instructions) babbage (smaller, cheaper, faster but worse at creative tasks), or gpt-j (an open source model – coming soon!). + +**Fine-tuned model** - finetuning takes one of the existing models and specialises it for a specific task by further training it with some task-specific data. + +Finetuning lets you get more out of the models by providing: + +1. Higher quality results than prompt design +2. Ability to train on more examples than can fit in a prompt +3. Token savings due to shorter prompts +4. Lower latency requests", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#models", + "title": "Models", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "This is the prompt template, the model (e.g. \`text-davinci-002\`) and the various parameters such as temperature that define how the model will generate text. + +A new model config is generated for each unique set of parameters used within that project. This is so you can compare different model configs to see which perform better, for things like the prompt, or settings like temperature, or stop sequences.", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#model-config", + "title": "Model config", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "This is the prompt that is fed to the model, which also allows the use of variables. This allows you track how the same prompt is being used with different input values. + +The variables are surrounded by \`{{ and }}\` like this: + +The input name is ‘topic’ and the value will be inserted into the prompt at runtime.", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#prompt-templates", + "title": "Prompt templates", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Variables are used in prompts to allow you to insert different values into the prompt at runtime. For example, in the prompt \`Write a song about {{topic}}\`, \`{{topic}}\` is a variable that can be replaced with different values at runtime. + +Variables in a prompt template are called Inputs.", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#input-variables", + "title": "Input Variables", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "All [Prompts](./prompts), +[Tools](./tools) and [Evaluators](./evaluators) produce Logs. A Log containsthe \`inputs\` and the \`output\`s and tracks which version of Prompt/Tool/Evaluator was used. + +For the example of a Prompt above, the Log would have one \`input\` called ‘topic’ and the \`output\` will be the completion. + +An example Log ", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#log", + "title": "Log", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "A datapoint is an input-output pair that is used to evaluate the performance of a model. It is different to a Log in that it is not tied to any specific version of a Prompt (or Tool or Evaluator), and that the target is an arbitrary object that can be used to evaluate the output of the model. See [Datasets](./datasets) for more information.", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#datapoint", + "title": "Datapoint", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Human feedback is crucial to help understand how your models are performing and to direct you in the ways to improve them. + +**Explicit feedback** these are purposeful actions to review the generations. For example, ‘thumbs up/down’ button presses. + +**Implicit feedback** – actions taken by your users may signal whether the generation was good or bad, for example, whether the user ‘copied’ the generation, ‘saved it’ or ‘dismissed it’ (which is negative feedback). + +You can also have corrections as a feedback too.", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#feedback", + "title": "Feedback", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Experiments help remove the guesswork from working with large language models. Experiments allow you to set up A/B test between multiple different model configs. This enables you to try out alternative prompts or models and use the feedback from your users to determine which works better.", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#experiment", + "title": "Experiment", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/prompts", + "title": "Core concepts", + }, + ], + "description": "Semantic search is an effective way to retrieve the most relevant information for a query from a large dataset of documents. The documents are typically split into small chunks of text that are stored as vector embeddings which are numerical representations for the meaning of text. Retrieval is carried out by first embedding the query and then using some measure of vector similarity to find the most similar embeddings from the dataset and return the associated chunks of text.", + "indexSegmentId": "0", + "slug": "docs/v4/key-concepts#semantic-search", + "title": "Semantic search", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/examples", + "title": "Examples", + }, + ], + "description": "Example projects demonstrating usage of Humanloop for prompt management, observability, and evaluation. + +A growing collection of example projects demonstrating usage of Humanloop. + +Visit our [Github examples repo](https://github.com/humanloop/examples) for a collection of usage examples of Humanloop.", + "indexSegmentId": "0", + "slug": "docs/v4/examples", + "title": "Example Projects", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/examples", + "title": "Examples", + }, + ], + "description": "| Github | Description | SDK | Chat | Logging | Tool Calling | Streaming | +| :--------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------- | :--------- | :--- | :------ | :---------------- | :-------- | +| [chatbot-starter](https://github.com/humanloop/chatbot-starter/) | An open-source AI chatbot app template built with Next.js, the Vercel AI SDK, OpenAI, and Humanloop. | TypeScript | ✔️ | ✔️ | | ✔️ | +| [asap](https://github.com/humanloop/asap) | CLI assistant for solving dev issues in your projects or the command line. | TypeScript | ✔️ | ✔️ | ✔️ | |", + "indexSegmentId": "0", + "slug": "docs/v4/examples#contents", + "title": "Contents", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "Humanloop supports all the major large language model providers, including OpenAI, Anthropic, Google, Azure, and more. Additionally, you can use your own custom models with with the API and still benefit from the Humanloop platform. + +Humanloop supports all the major large language model providers, including OpenAI, Anthropic, Google, Azure, and more. Additionally, you can use your own custom models with with the API and still benefit from the Humanloop platform.", + "indexSegmentId": "0", + "slug": "docs/v4/supported-models", + "title": "Supported Models", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "Here is a summary of which providers are supported, and what information is available for each provider automatically. + +| Provider | Models | Cost information | Token information | +| ----------- | ---------------- | ---------------- | ----------------- | +| OpenAI | ✅ | ✅ | ✅ | +| Anthropic | ✅ | ✅ | ✅ | +| Google | ✅ | ✅ | ✅ | +| Azure | ✅ | ✅ | ✅ | +| Cohere | ✅ | ✅ | ✅ | +| Llama | ✅ | | | +| Groq | ✅ | | | +| AWS Bedrock | Anthropic, Llama | | | + +| Custom | ✅ | User-defined | User-defined | + +Adding in more providers is driven by customer demand. If you have a specific provider or model you would like to see supported, please reach out to us at [support@humanloop.com](mailto:support@humanloop.com).", + "indexSegmentId": "0", + "slug": "docs/v4/supported-models#providers", + "title": "Providers", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "The following are models that are integrated with Humanloop. This means that they can be used in the Prompt Editor and are callable through the Humanloop API. If you have a specific model you would like to see supported, please reach out to us at [support@humanloop.com](mailto:support@humanloop.com). + + + Remember, you can always use any model you want including your own self-hosted + models, if you orchestrate the API calls yourself and log the data to + Humanloop. + + +| Provider | Model | Max Prompt Tokens | Max Output Tokens | Cost per Prompt Token | Cost per Output Token | Tool Support | Image Support | +| ------------ | -------------------------- | ----------------- | ----------------- | --------------------- | --------------------- | ------------ | ------------- | +| openai | gpt-4o | 128000 | 4096 | $0.000005 | $0.000015 | ✅ | ✅ | +| openai | gpt-4o-mini | 128000 | 4096 | $0.00000015 | $0.0000006 | ✅ | ✅ | +| openai | gpt-4 | 8192 | 4096 | $0.00003 | $0.00006 | ✅ | ❌ | +| openai | gpt-4-turbo | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ✅ | +| openai | gpt-4-turbo-2024-04-09 | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| openai | gpt-4-32k | 32768 | 4096 | $0.00003 | $0.00003 | ✅ | ❌ | +| openai | gpt-4-1106-preview | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| openai | gpt-4-0125-preview | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| openai | gpt-4-vision | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ✅ | +| openai | gpt-4-1106-vision-preview | 16385 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| openai | gpt-3.5-turbo | 16385 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| openai | gpt-3.5-turbo-instruct | 8192 | 4097 | $0.0000015 | $0.000002 | ✅ | ❌ | +| openai | babbage-002 | 16384 | 16384 | $0.0000004 | $0.0000004 | ✅ | ❌ | +| openai | davinci-002 | 16384 | 16384 | $0.000002 | $0.000002 | ✅ | ❌ | +| openai | ft:gpt-3.5-turbo | 4097 | 4096 | $0.000003 | $0.000006 | ✅ | ❌ | +| openai | ft:davinci-002 | 16384 | 16384 | $0.000002 | $0.000002 | ✅ | ❌ | +| openai | text-moderation | 32768 | 32768 | $0.000003 | $0.000004 | ✅ | ❌ | +| anthropic | claude-3-5-sonnet-20240620 | 200000 | 4096 | $0.000003 | $0.000015 | ✅ | ✅ | +| anthropic | claude-3-opus-20240229 | 200000 | 4096 | $0.000015 | $0.000075 | ✅ | ❌ | +| anthropic | claude-3-sonnet-20240229 | 200000 | 4096 | $0.000003 | $0.000015 | ✅ | ❌ | +| anthropic | claude-3-haiku-20240307 | 200000 | 4096 | $0.00000025 | $0.00000125 | ✅ | ❌ | +| anthropic | claude-2.1 | 100000 | 4096 | $0.00000025 | $0.000024 | ❌ | ❌ | +| anthropic | claude-2 | 100000 | 4096 | $0.000008 | $0.000024 | ❌ | ❌ | +| anthropic | claude-instant-1.2 | 100000 | 4096 | $0.000008 | $0.000024 | ❌ | ❌ | +| anthropic | claude-instant-1 | 100000 | 4096 | $0.0000008 | $0.0000024 | ❌ | ❌ | +| google | gemini-pro-vision | 16384 | 2048 | $0.00000025 | $0.0000005 | ❌ | ✅ | +| google | gemini-1.0-pro-vision | 16384 | 2048 | $0.00000025 | $0.0000005 | ❌ | ✅ | +| google | gemini-pro | 32760 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ | +| google | gemini-1.0-pro | 32760 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ | +| google | gemini-1.5-pro-latest | 1000000 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ | +| google | gemini-1.5-pro | 1000000 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ | +| google | gemini-experimental | 1000000 | 8192 | $0.00000025 | $0.0000005 | ❌ | ❌ | +| openai_azure | gpt-4o | 128000 | 4096 | $0.000005 | $0.000015 | ✅ | ✅ | +| openai_azure | gpt-4o-2024-05-13 | 128000 | 4096 | $0.000005 | $0.000015 | ✅ | ✅ | +| openai_azure | gpt-4-turbo-2024-04-09 | 128000 | 4096 | $0.00003 | $0.00006 | ✅ | ✅ | +| openai_azure | gpt-4 | 8192 | 4096 | $0.00003 | $0.00006 | ✅ | ❌ | +| openai_azure | gpt-4-0314 | 8192 | 4096 | $0.00003 | $0.00006 | ✅ | ❌ | +| openai_azure | gpt-4-32k | 32768 | 4096 | $0.00006 | $0.00012 | ✅ | ❌ | +| openai_azure | gpt-4-0125 | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| openai_azure | gpt-4-1106 | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| openai_azure | gpt-4-0613 | 8192 | 4096 | $0.00003 | $0.00006 | ✅ | ❌ | +| openai_azure | gpt-4-turbo | 128000 | 4096 | $0.00001 | $0.00003 | ✅ | ❌ | +| openai_azure | gpt-4-turbo-vision | 128000 | 4096 | $0.000003 | $0.000004 | ✅ | ✅ | +| openai_azure | gpt-4-vision | 128000 | 4096 | $0.000003 | $0.000004 | ✅ | ✅ | +| openai_azure | gpt-35-turbo-1106 | 16384 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| openai_azure | gpt-35-turbo-0125 | 16384 | 4096 | $0.0000005 | $0.0000015 | ✅ | ❌ | +| openai_azure | gpt-35-turbo-16k | 16384 | 4096 | $0.000003 | $0.000004 | ✅ | ❌ | +| openai_azure | gpt-35-turbo | 4097 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| openai_azure | gpt-3.5-turbo-instruct | 4097 | 4096 | $0.0000015 | $0.000002 | ✅ | ❌ | +| openai_azure | gpt-35-turbo-instruct | 4097 | 4097 | $0.0000015 | $0.000002 | ✅ | ❌ | +| cohere | command-r | 128000 | 4000 | $0.0000005 | $0.0000015 | ❌ | ❌ | +| cohere | command-light | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| cohere | command-r-plus | 128000 | 4000 | $0.000003 | $0.000015 | ❌ | ❌ | +| cohere | command-nightly | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| cohere | command | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| cohere | command-medium-beta | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| cohere | command-xlarge-beta | 4096 | 4096 | $0.000015 | $0.000015 | ❌ | ❌ | +| groq | mixtral-8x7b-32768 | 32768 | 32768 | $0.0 | $0.0 | ❌ | ❌ | +| groq | llama3-8b-8192 | 8192 | 8192 | $0.0 | $0.0 | ❌ | ❌ | +| groq | llama3-70b-8192 | 8192 | 8192 | $0.0 | $0.0 | ❌ | ❌ | +| groq | llama2-70b-4096 | 4096 | 4096 | $0.0 | $0.0 | ❌ | ❌ | +| groq | gemma-7b-it | 8192 | 8192 | $0.0 | $0.0 | ❌ | ❌ | +| replicate | llama-3-70b-instruct | 8192 | 8192 | $0.00000065 | $0.00000275 | ❌ | ❌ | +| replicate | llama-3-70b | 8192 | 8192 | $0.00000065 | $0.00000275 | ❌ | ❌ | +| replicate | llama-3-8b-instruct | 8192 | 8192 | $0.00000005 | $0.00000025 | ❌ | ❌ | +| replicate | llama-3-8b | 8192 | 8192 | $0.00000005 | $0.00000025 | ❌ | ❌ | +| replicate | llama-2-70b | 4096 | 4096 | $0.00003 | $0.00006 | ❌ | ❌ | +| replicate | llama70b-v2 | 4096 | 4096 | N/A | N/A | ❌ | ❌ | +| replicate | mixtral-8x7b | 4096 | 4096 | N/A | N/A | ❌ | ❌ |", + "indexSegmentId": "0", + "slug": "docs/v4/supported-models#models", + "title": "Models", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "Learn about the different roles and permissions in Humanloop to help you with prompt and data management for large language models. + +Everyone invited to the organization can access all projects currently (controlling project access coming soon). + +A user can be one of the following rolws: + +**Admin:** The highest level of control. They can manage, modify, and oversee the organization's settings and have full functionality across all projects. + +**Developer:** (Enterprise tier only) Can deploy prompts, manage environments, create and add API keys, but lacks the ability to access billing or invite others. + +**Member:** (Enterprise tier only) The basic level of access. Can create and save prompts, run evaluations, but not deploy. Can not see any org-wide API keys.", + "indexSegmentId": "0", + "slug": "docs/v4/access-roles", + "title": "Access Roles", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "Here is the full breakdown of roles and access: + +| Action | Member | Developer | Admin | +| :----------------------------- | :----- | :-------- | :---- | +| Create and manage Prompts | ✔️ | ✔️ | ✔️ | +| Inspect logs and feedback | ✔️ | ✔️ | ✔️ | +| Create and manage evaluators | ✔️ | ✔️ | ✔️ | +| Run evaluations | ✔️ | ✔️ | ✔️ | +| Create and manage datasets | ✔️ | ✔️ | ✔️ | +| Create and manage API keys | | ✔️ | ✔️ | +| Manage prompt deployments | | ✔️ | ✔️ | +| Create and manage environments | | ✔️ | ✔️ | +| Send invites | | | ✔️ | +| Set user roles | | | ✔️ | +| Manage billing | | | ✔️ | +| Change organization settings | | | ✔️ |", + "indexSegmentId": "0", + "slug": "docs/v4/access-roles#rbacs-summary", + "title": "RBACs summary", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "The \`.prompt\` file format is a human-readable and version-control-friendly format for storing model configurations. + +Our file format for serialising prompts to store alongside your source code. + +Our \`.prompt\` file format is a serialized version of a model config that is designed to be human-readable and suitable for checking into your version control systems alongside your code.", + "indexSegmentId": "0", + "slug": "docs/v4/prompt-file-format", + "title": ".prompt files", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "The .prompt file is heavily inspired by [MDX](https://mdxjs.com/), with model and hyperparameters specified in a YAML header alongside a JSX-inspired format for your Chat Template.", + "indexSegmentId": "0", + "slug": "docs/v4/prompt-file-format#format", + "title": "Format", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + { + "slug": "docs/v4/prompt-file-format#format", + "title": "Format", + }, + ], + "description": " +\`\`\`jsx Chat +--- +model: gpt-4 +temperature: 1.0 +max_tokens: -1 +provider: openai +endpoint: chat +--- + + You are a friendly assistant. + +\`\`\` +\`\`\`jsx Completion +--- +model: claude-2 +temperature: 0.7 +max_tokens: 256 +top_p: 1.0 +provider: anthropic +endpoint: complete +--- +Autocomplete the sentence. + +Context: {{context}} + +{{sentence}} + +\`\`\`\` +", + "indexSegmentId": "0", + "slug": "docs/v4/prompt-file-format#basic-examples", + "title": "Basic examples", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + { + "slug": "docs/v4/prompt-file-format#format", + "title": "Format", + }, + ], + "description": "Images can be specified using nested \`\` tags within a \`\` message. To specify text alongside the image, use a \`\` tag. + +\`\`\`jsx Image and Text +--- +model: gpt-4-vision-preview +temperature: 0.7 +max_tokens: 256 +provider: openai +endpoint: chat +tools: [] +--- + + You are a friendly assistant. + + + + + What is in this image? + + + +\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v4/prompt-file-format#multi-modality-and-images", + "title": "Multi-modality and Images", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + { + "slug": "docs/v4/prompt-file-format#format", + "title": "Format", + }, + ], + "description": "Specify the tools available to the model as a JSON list in the YAML header. + +Tool calls in assistant messages can be added with nested \`\` tags. A \`\` tag within an \`\` tag denotes a tool call of \`type: "function"\`, and requires the attributes \`name\` and \`id\`. The text wrapped in a \`\` tag should be a JSON-formatted string containing the tool call's arguments. + +Tool call responses can then be added with \`\` tags after the \`\` message. + +\`\`\`jsx +--- +model: gpt-4 +temperature: 0.7 +max_tokens: 256 +top_p: 1.0 +presence_penalty: 0.0 +frequency_penalty: 0.0 +provider: openai +endpoint: chat +tools: [ + { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "name": "Location", + "description": "The city and state, e.g. San Francisco, CA" + }, + "unit": { + "type": "string", + "name": "Unit", + "enum": [ + "celsius", + "fahrenheit" + ] + } + }, + "required": [ + "location" + ] + } + } +] +--- + + You are a friendly assistant. + + + + What is the weather in SF? + + + + + { + "location": "San Francisco, CA" + } + + + + + + Cloudy with a chance of meatballs. + +\`\`\` +\`\`\`\`", + "indexSegmentId": "0", + "slug": "docs/v4/prompt-file-format#tools-tool-calls-and-tool-responses", + "title": "Tools, tool calls and tool responses", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "Reference our Postman Workspace for examples of how to interact with the Humanloop API directly. + +A companion to our API references. + +In our various guides we assumed the use of our [Python SDK](https://pypi.org/project/humanloop/). There are some use cases where this is not appropriate. For example, if you are integrating Humanloop from a non-Python backend, such as Node.js, or using a no-or-low-code builder such as [Bubble](https://bubble.io/) or [Zapier](https://zapier.com/). In these cases, you can leverage our RESTful [APIs](/api-reference/projects/get) directly. + +To help with direct API integrations, we maintain a [Postman Workspace](https://www.postman.com/humanloop/workspace/humanloop) with various worked examples for the main endpoints you will need.", + "indexSegmentId": "0", + "slug": "docs/v4/postman-workspace", + "title": "Postman Workspace", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "- A Humanloop account. If you don't have one, you can create an account now by going to the [Sign up page](https://app.humanloop.com/signup).", + "indexSegmentId": "0", + "slug": "docs/v4/postman-workspace#prerequisites", + "title": "Prerequisites", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": "- Navigate to your [Humanloop profile page](https://app.humanloop.com/account/settings) and copy your Humanloop API key. +- Navigate to our [Postman Workspace](https://www.postman.com/humanloop/workspace/humanloop/overview) and set the environment to \`Production\` in the dropdown in the top right where it says \`No Environment\` +- Select the \`Environment quick look\` button beside the environment dropdown and paste your Humanloop API key into the \`CURRENT VALUE\` of the \`user_api_key\` variable: + + + +- Navigate to your [OpenAI profile](https://beta.openai.com/account/api-keys) and copy the API key. +- Navigate back to our Postman Workspace and paste your OpenAI key into the \`CURRENT VALUE\` of the global \`open_ai_key\` variable: + + + +You are now all set to use Postman to interact with the APIs with real examples!", + "indexSegmentId": "0", + "slug": "docs/v4/postman-workspace#set-your-api-keys-in-postman", + "title": "Set your API keys in Postman", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/supported-models", + "title": "References", + }, + ], + "description": " +A **collection** is a set of executable API specifications that are grouped together in Postman. + + +There are 4 executable collections provided to check out. + +The **Chat** collection is the best place to start to get a project setup and sending chat messages. To try it out: + +- Expand the V4 **Chat** collection on the left hand side. +- Select **Create chat sending model-config** from the list +- Execute the \`POST\` calls in order from top to bottom by selecting them under the collection on the left hand side and pressing the \`Send\` button on the right hand side. You should see the resulting response body appearing in the box below the request body. + - Try editing the request body and resending - you can reference the corresponding [API guides](https://humanloop.readme.io/reference) for a full spec of the request schema. + + + +- If you now navigate to your [Humanloop projects page](https://app.humanloop.com), you will see a new project called \`assistant\` with logged data. +- You can now generate populated code snippets across a range of languages by selecting the code icon on the right hand side beside the request and response bodies: + +", + "indexSegmentId": "0", + "slug": "docs/v4/postman-workspace#try-out-the-postman-collections", + "title": "Try out the Postman Collections", + "type": "page-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Log to a Prompt. + +You can use query parameters \`version_id\`, or \`environment\`, to target +an existing version of the Prompt. Otherwise, the default deployed version will be chosen. + +Instead of targeting an existing version explicitly, you can instead pass in +Prompt details in the request body. In this case, we will check if the details correspond +to an existing version of the Prompt. If they do not, we will create a new version. This is helpful +in the case where you are storing or deriving your Prompt details in code.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Prompt to log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment identifying a deployed version to log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.trace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "User defined timestamp for when the log was created. ", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Details of your Prompt. A new Prompt version will be created if the provided details are new.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The IDs of the Tools in your organization that the model can choose to call if Tool calling is supported. The default deployed version of that tool is called.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The IDs of the Tools in your organization that the model can choose to call if Tool calling is supported. The default deployed version of that tool is called.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant. + +A tool call to be made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.output_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "ID for an existing Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Path of the Prompt, including the name. This locates the Prompt in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#request", + "title": "Request", + }, + ], + "description": "Unique identifier for the Evaluation Report to associate the Log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#request.body.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response", + "title": "Response", + }, + ], + "description": "String ID of session the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response", + "title": "Response", + }, + ], + "description": "ID of the specific version of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response", + "title": "Response", + }, + ], + "description": "ID of the Prompt the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#response.body.prompt_id", + "title": "prompt_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response", + "title": "Response", + }, + ], + "description": "String ID of log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Update a Log. + +Update the details of a Log with the given ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.path.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.path.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "User defined timestamp for when the log was created. ", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant. + +A tool call to be made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#request.body.output_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Status of the Trace. When a Trace is marked as \`complete\`, no more Logs can be added to it. Monitoring Evaluators will only run on completed Traces. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsetrace_status", + "title": "trace_status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsetrace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsetrace_status.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsetrace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsetrace_status.incomplete", + "title": "incomplete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Flow used to generate the Log. + +Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseflow.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Flow%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Evaluator assessment of the Log. + +Evaluator assessment of the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifier of the evaluated Log. The newly created Log will have this one set as parent.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseparent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Evaluator used to generate the judgment. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Evaluator%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Tool used to generate the Log. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responsetool.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Tool%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsemessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsemessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responsefinish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseoutput_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Prompt used to generate the Log. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.body.Prompt%20Log%20Responseprompt.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Call a Prompt. + +Calling a Prompt calls the model provider before logging +the request, responses and metadata to Humanloop. + +You can use query parameters \`version_id\`, or \`environment\`, to target +an existing version of the Prompt. Otherwise the default deployed version will be chosen. + +Instead of targeting an existing version explicitly, you can instead pass in +Prompt details in the request body. In this case, we will check if the details correspond +to an existing version of the Prompt. If they do not, we will create a new version. This is helpful +in the case where you are storing or deriving your Prompt details in code.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Prompt to log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment identifying a deployed version to log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Whether to return the inputs in the response. If false, the response will contain an empty dictionary under inputs. This is useful for reducing the size of the response. Defaults to true.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.return_inputs", + "title": "return_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "The number of generations.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "API keys required by each provider to make API calls. The API keys provided here are not stored by Humanloop. If not specified here, Humanloop will fall back to the key saved to your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys", + "title": "provider_api_keys", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys.openai_azure_endpoint", + "title": "openai_azure_endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys.ai21", + "title": "ai21", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.provider_api_keys.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.trace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Details of your Prompt. A new Prompt version will be created if the provided details are new.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The IDs of the Tools in your organization that the model can choose to call if Tool calling is supported. The default deployed version of that tool is called.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The IDs of the Tools in your organization that the model can choose to call if Tool calling is supported. The default deployed version of that tool is called.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt", + "title": "prompt", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.prompt.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "ID for an existing Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "Path of the Prompt, including the name. This locates the Prompt in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#request", + "title": "Request", + }, + ], + "description": "If true, tokens will be sent as data-only server-sent events. If num_samples > 1, samples are streamed back independently.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#request.body.stream", + "title": "stream", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + ], + "description": "Response model for a Prompt call with potentially multiple log samples.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "ID of the Trace containing the Prompt Call Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.trace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.trace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "The logs generated by the Prompt call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "The logs generated by the Prompt call. + +Sample specific response details for a Prompt call", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.logs", + "title": "logs", + }, + ], + "description": "The index of the sample in the batch.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.logs.index", + "title": "index", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "ID of the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + ], + "description": "Prompt used to generate the Log. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt", + "title": "prompt", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.body.prompt.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/call", + "title": "Call", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/call#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/call", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/call#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Get a list of all Prompts.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page number for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of Prompts to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for Prompt name.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for users in the Prompt. This filter matches against both email address and name of users.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Field to sort Prompts by", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.sort_by.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.sort_by.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.sort_by.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Direction to sort by.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.order.asc", + "title": "asc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/prompts/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#request.query.order.desc", + "title": "desc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Create a Prompt or update it with a new version if it already exists. + +Prompts are identified by the \`ID\` or their \`path\`. The parameters (i.e. the prompt template, temperature, model etc.) determine the versions of the Prompt. + +If you provide a commit message, then the new version will be committed; +otherwise it will be uncommitted. If you try to commit an already committed version, +an exception will be raised.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The IDs of the Tools in your organization that the model can choose to call if Tool calling is supported. The default deployed version of that tool is called.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The IDs of the Tools in your organization that the model can choose to call if Tool calling is supported. The default deployed version of that tool is called.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools", + "title": "tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools", + "title": "tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools", + "title": "tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools", + "title": "tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "ID for an existing Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "Path of the Prompt, including the name. This locates the Prompt in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#request", + "title": "Request", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#request.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool Version linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.linked_tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools", + "title": "tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools", + "title": "tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools", + "title": "tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools", + "title": "tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Retrieve the Prompt with the given ID. + +By default, the deployed version of the Prompt is returned. Use the query parameters +\`version_id\` or \`environment\` to target a specific version of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Prompt to retrieve.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment to retrieve a deployed Version from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool Version linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.linked_tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.tools", + "title": "tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.tools", + "title": "tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.tools", + "title": "tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.tools", + "title": "tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Delete the Prompt with the given ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/delete", + "title": "Delete", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Move the Prompt to a different path or change the name.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/move#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/move#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#request", + "title": "Request", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#request", + "title": "Request", + }, + ], + "description": "Path of the Prompt including the Prompt name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool Version linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.linked_tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.tools", + "title": "tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.tools", + "title": "tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.tools", + "title": "tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.tools", + "title": "tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/prompts/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Get a list of all the versions of a Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "Filter versions by status: 'uncommitted', 'committed'. If no status is provided, all versions are returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "Whether to include Evaluator aggregate results for the versions in the response", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#request.query.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Prompts.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Prompts. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Commit a version of the Prompt with a commit message. + +If the version is already committed, an exception will be raised.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool Version linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.linked_tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools", + "title": "tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools", + "title": "tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools", + "title": "tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools", + "title": "tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Activate and deactivate Evaluators for monitoring the Prompt. + +An activated Evaluator will automatically be run on all new Logs +within the Prompt for monitoring purposes.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to deactivate. These will not be run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.deactivate", + "title": "deactivate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to deactivate. These will not be run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.deactivate", + "title": "deactivate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.deactivate", + "title": "deactivate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.deactivate.Monitoring%20Evaluator%20Environment%20Request", + "title": "Monitoring Evaluator Environment Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.deactivate", + "title": "deactivate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.deactivate.Monitoring%20Evaluator%20Version%20Request", + "title": "Monitoring Evaluator Version Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to activate for Monitoring. These will be automatically run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.activate", + "title": "activate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to activate for Monitoring. These will be automatically run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.activate", + "title": "activate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.activate", + "title": "activate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.activate.Monitoring%20Evaluator%20Environment%20Request", + "title": "Monitoring Evaluator Environment Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.activate", + "title": "activate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#request.body.activate.Monitoring%20Evaluator%20Version%20Request", + "title": "Monitoring Evaluator Version Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool Version linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.linked_tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools", + "title": "tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools", + "title": "tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools", + "title": "tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools", + "title": "tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/update-monitoring#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Deploy Prompt to an Environment. + +Set the deployed version for the specified Environment. This Prompt +will be used for calls made to the Prompt in this Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to deploy the Version to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool Version linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Unique identifier for the Tool linked.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools", + "title": "linked_tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.linked_tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools", + "title": "tools", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools", + "title": "tools", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools", + "title": "tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools", + "title": "tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/prompts/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "Remove deployed Prompt from the Environment. + +Remove the deployed version for the specified Environment. This Prompt +will no longer be used for calls made to the Prompt in this Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/remove-deployment", + "title": "Remove Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to remove the deployment from.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/prompts/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + ], + "description": "List all Environments and their deployed versions for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + ], + "description": "Response model for the List Environments endpoint under Files. + +Contains the deployed version of the File, if one is deployed to the Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + ], + "description": "The version of the File that is deployed to the Environment, if one is deployed. + +The version of the File that is deployed to the Environment, if one is deployed.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file", + "title": "file", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file.Flow%20Response", + "title": "Flow Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file.Evaluator%20Response", + "title": "Evaluator Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file.Dataset%20Response", + "title": "Dataset Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file.Tool%20Response", + "title": "Tool Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.file.Prompt%20Response", + "title": "Prompt Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/prompts/log", + "title": "Prompts", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/prompts/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/prompts/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/prompts/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Log to a Tool. + +You can use query parameters \`version_id\`, or \`environment\`, to target +an existing version of the Tool. Otherwise the default deployed version will be chosen. + +Instead of targeting an existing version explicitly, you can instead pass in +Tool details in the request body. In this case, we will check if the details correspond +to an existing version of the Tool, if not we will create a new version. This is helpful +in the case where you are storing or deriving your Tool details in code.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Tool to log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment identifying a deployed version to log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Details of your Tool. A new Tool version will be created if the provided details are new.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool.function", + "title": "function", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.function.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool.function", + "title": "function", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.function.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/log#request.body.tool.function", + "title": "function", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.tool.function.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.trace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "User defined timestamp for when the log was created. ", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "ID for an existing Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#request", + "title": "Request", + }, + ], + "description": "Path of the Tool, including the name. This locates the Tool in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#response", + "title": "Response", + }, + ], + "description": "String ID of session the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#response", + "title": "Response", + }, + ], + "description": "ID of the specific version of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#response", + "title": "Response", + }, + ], + "description": "ID of the Tool the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#response.body.tool_id", + "title": "tool_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#response", + "title": "Response", + }, + ], + "description": "String ID of log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/log#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/log#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/tools/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Update a Log. + +Update the details of a Log with the given ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.path.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.path.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "User defined timestamp for when the log was created. ", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#request", + "title": "Request", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#request.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Status of the Trace. When a Trace is marked as \`complete\`, no more Logs can be added to it. Monitoring Evaluators will only run on completed Traces. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsetrace_status", + "title": "trace_status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsetrace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsetrace_status.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsetrace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsetrace_status.incomplete", + "title": "incomplete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Flow used to generate the Log. + +Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseflow.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Flow%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Evaluator assessment of the Log. + +Evaluator assessment of the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifier of the evaluated Log. The newly created Log will have this one set as parent.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseparent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Evaluator used to generate the judgment. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Evaluator%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Tool used to generate the Log. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responsetool.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Tool%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsemessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsemessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responsefinish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseoutput_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Prompt used to generate the Log. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.body.Prompt%20Log%20Responseprompt.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/tools/update#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/log/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Get a list of all Tools.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page offset for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of Tools to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for Tool name.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for users in the Tool. This filter matches against both email address and name of users.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Field to sort Tools by", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.sort_by.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.sort_by.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.sort_by.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Direction to sort by.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.order.asc", + "title": "asc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/tools/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#request.query.order.desc", + "title": "desc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/tools/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Create a Tool or update it with a new version if it already exists. + +Tools are identified by the \`ID\` or their \`path\`. The name, description and parameters determine the versions of the Tool. + +If you provide a commit message, then the new version will be committed; +otherwise it will be uncommitted. If you try to commit an already committed version, +an exception will be raised.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.function", + "title": "function", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.function.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.function", + "title": "function", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.function.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request.body.function", + "title": "function", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.function.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "ID for an existing Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#request", + "title": "Request", + }, + ], + "description": "Path of the Tool, including the name. This locates the Tool in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.function", + "title": "function", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.function.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.function", + "title": "function", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.function.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.function", + "title": "function", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.function.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Retrieve the Tool with the given ID. + +By default, the deployed version of the Tool is returned. Use the query parameters +\`version_id\` or \`environment\` to target a specific version of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Tool to retrieve.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment to retrieve a deployed Version from.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.function", + "title": "function", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.function.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.function", + "title": "function", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.function.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.function", + "title": "function", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.function.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/tools/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Delete the Tool with the given ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/delete", + "title": "Delete", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/tools/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/tools/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Move the Tool to a different path or change the name.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/move#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/move#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#request", + "title": "Request", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#request", + "title": "Request", + }, + ], + "description": "Path of the Tool including the Tool name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.function", + "title": "function", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.function.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.function", + "title": "function", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.function.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.function", + "title": "function", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.function.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/tools/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/tools/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Get a list of all the versions of a Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "Filter versions by status: 'uncommitted', 'committed'. If no status is provided, all versions are returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#request.query.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#request.query.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#request.query.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "Whether to include Evaluator aggregate results for the versions in the response", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#request.query.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#request.query.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Tools.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Tools. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Commit a version of the Tool with a commit message. + +If the version is already committed, an exception will be raised.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.function", + "title": "function", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.function.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.function", + "title": "function", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.function.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.function", + "title": "function", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.function.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Activate and deactivate Evaluators for monitoring the Tool. + +An activated Evaluator will automatically be run on all new Logs +within the Tool for monitoring purposes.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to deactivate. These will not be run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.deactivate", + "title": "deactivate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to deactivate. These will not be run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.deactivate", + "title": "deactivate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.deactivate", + "title": "deactivate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.deactivate.Monitoring%20Evaluator%20Environment%20Request", + "title": "Monitoring Evaluator Environment Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.deactivate", + "title": "deactivate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.deactivate.Monitoring%20Evaluator%20Version%20Request", + "title": "Monitoring Evaluator Version Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to activate for Monitoring. These will be automatically run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.activate", + "title": "activate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to activate for Monitoring. These will be automatically run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.activate", + "title": "activate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.activate", + "title": "activate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.activate.Monitoring%20Evaluator%20Environment%20Request", + "title": "Monitoring Evaluator Environment Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.activate", + "title": "activate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#request.body.activate.Monitoring%20Evaluator%20Version%20Request", + "title": "Monitoring Evaluator Version Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function", + "title": "function", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function", + "title": "function", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function", + "title": "function", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.function.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/update-monitoring#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Deploy Tool to an Environment. + +Set the deployed version for the specified Environment. This Prompt +will be used for calls made to the Tool in this Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to deploy the Version to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function", + "title": "function", + }, + ], + "description": "Parameters needed to run the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function", + "title": "function", + }, + ], + "description": "If true, forces the model to output json data in the structure of the parameters schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function.strict", + "title": "strict", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function", + "title": "function", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function", + "title": "function", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.function.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/tools/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "Remove deployed Tool from the Environment. + +Remove the deployed version for the specified Environment. This Tool +will no longer be used for calls made to the Tool in this Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/remove-deployment", + "title": "Remove Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to remove the deployment from.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/tools/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + ], + "description": "List all Environments and their deployed versions for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + ], + "description": "Response model for the List Environments endpoint under Files. + +Contains the deployed version of the File, if one is deployed to the Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + ], + "description": "The version of the File that is deployed to the Environment, if one is deployed. + +The version of the File that is deployed to the Environment, if one is deployed.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file", + "title": "file", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file.Flow%20Response", + "title": "Flow Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file.Evaluator%20Response", + "title": "Evaluator Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file.Dataset%20Response", + "title": "Dataset Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file.Tool%20Response", + "title": "Tool Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.file.Prompt%20Response", + "title": "Prompt Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/tools/log", + "title": "Tools", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/tools/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/tools/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/tools/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "List all Datasets.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page offset for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of Datasets to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for Dataset name.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for users in the Dataset. This filter matches against both email address and name of users.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Field to sort Datasets by", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.sort_by.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.sort_by.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.sort_by.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Direction to sort by.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.order.asc", + "title": "asc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/datasets/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#request.query.order.desc", + "title": "desc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "Create a Dataset or update it with a new version if it already exists. + +Datasets are identified by the \`ID\` or their \`path\`. The datapoints determine the versions of the Dataset. + +By default, the new Dataset version will be set to the list of Datapoints provided in +the request. You can also create a new version by adding or removing Datapoints from an existing version +by specifying \`action\` as \`add\` or \`remove\` respectively. In this case, you may specify +the \`version_id\` or \`environment\` query parameters to identify the existing version to base +the new version on. If neither is provided, the default deployed version will be used. + +If you provide a commit message, then the new version will be committed; +otherwise it will be uncommitted. If you try to commit an already committed version, +an exception will be raised. + +Humanloop also deduplicates Datapoints. If you try to add a Datapoint that already +exists, it will be ignored. If you intentionally want to add a duplicate Datapoint, +you can add a unique identifier to the Datapoint's inputs such as \`{_dedupe_id: }\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.query", + "title": "Query Parameters", + }, + ], + "description": "ID of the specific Dataset version to base the created Version on. Only used when \`action\` is \`"add"\` or \`"remove"\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment identifying a deployed Version to base the created Version on. Only used when \`action\` is \`"add"\` or \`"remove"\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + ], + "description": "The action to take with the provided Datapoints. + + - If \`"set"\`, the created version will only contain the Datapoints provided in this request. + - If \`"add"\`, the created version will contain the Datapoints provided in this request in addition to the Datapoints in the target version. + - If \`"remove"\`, the created version will contain the Datapoints in the target version except for the Datapoints provided in this request. + +If \`"add"\` or \`"remove"\`, one of the \`version_id\` or \`environment\` query parameters may be provided. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.action", + "title": "action", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.body.action", + "title": "action", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.action.set", + "title": "set", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.body.action", + "title": "action", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.action.add", + "title": "add", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.body.action", + "title": "action", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.action.remove", + "title": "remove", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + ], + "description": "ID for an existing Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + ], + "description": "Path of the Dataset, including the name. This locates the Dataset in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + ], + "description": "The Datapoints to create this Dataset version with. Modify the \`action\` field to determine how these Datapoints are used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + ], + "description": "The Datapoints to create this Dataset version with. Modify the \`action\` field to determine how these Datapoints are used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Object with criteria necessary to evaluate generations with this Datapoint. This is passed in as an argument to Evaluators when used in an Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.datapoints.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.body.datapoints", + "title": "datapoints", + }, + ], + "description": "List of chat messages to provide to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.datapoints.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#request.body.datapoints", + "title": "datapoints", + }, + ], + "description": "The inputs to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#request.body.datapoints.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Object with criteria necessary to evaluate generations with this Datapoint. This is passed in as an argument to Evaluators when used in an Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "List of chat messages to provide to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "The inputs to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Unique identifier for the Datapoint. Starts with \`dp_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "Retrieve the Dataset with the given ID. + +Unless \`include_datapoints\` is set to \`true\`, the response will not include +the Datapoints. +Use the List Datapoints endpoint (\`GET /{id}/datapoints\`) to efficiently +retrieve Datapoints for a large Dataset. + +By default, the deployed version of the Dataset is returned. Use the query parameters +\`version_id\` or \`environment\` to target a specific version of the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Dataset to retrieve.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment to retrieve a deployed Version from.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "If set to \`true\`, include all Datapoints in the response. Defaults to \`false\`. Consider using the paginated List Datapoints endpoint instead.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#request.query.include_datapoints", + "title": "include_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#request.query.include_datapoints", + "title": "include_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Object with criteria necessary to evaluate generations with this Datapoint. This is passed in as an argument to Evaluators when used in an Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "List of chat messages to provide to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "The inputs to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Unique identifier for the Datapoint. Starts with \`dp_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "Delete the Dataset with the given ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/delete", + "title": "Delete", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "Move the Dataset to a different path or change the name.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/move#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/move#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#request", + "title": "Request", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#request", + "title": "Request", + }, + ], + "description": "Path of the Dataset including the Dataset name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Object with criteria necessary to evaluate generations with this Datapoint. This is passed in as an argument to Evaluators when used in an Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "List of chat messages to provide to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "The inputs to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Unique identifier for the Datapoint. Starts with \`dp_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/datasets/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "List all Datapoints for the Dataset with the given ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Dataset to retrieve.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment to retrieve a deployed Version from.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page number for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of Datapoints to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": "Object with criteria necessary to evaluate generations with this Datapoint. This is passed in as an argument to Evaluators when used in an Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": "List of chat messages to provide to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": "The inputs to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Datapoint. Starts with \`dp_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "Get a list of the versions for a Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "Filter versions by status: 'uncommitted', 'committed'. If no status is provided, all versions are returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#request.query.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#request.query.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#request.query.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Datasets.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Datasets. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "Commit a version of the Dataset with a commit message. + +If the version is already committed, an exception will be raised.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Object with criteria necessary to evaluate generations with this Datapoint. This is passed in as an argument to Evaluators when used in an Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "List of chat messages to provide to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "The inputs to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Unique identifier for the Datapoint. Starts with \`dp_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "Add Datapoints from a CSV file to a Dataset. + +This will create a new committed version of the Dataset with the Datapoints from the CSV file. + +If either \`version_id\` or \`environment\` is provided, the new version will be based on the specified version, +with the Datapoints from the CSV file added to the existing Datapoints in the version. +If neither \`version_id\` nor \`environment\` is provided, the new version will be based on the version +of the Dataset that is deployed to the default Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request.query", + "title": "Query Parameters", + }, + ], + "description": "ID of the specific Dataset version to base the created Version on.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment identifying a deployed Version to base the created Version on.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Dataset", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Object with criteria necessary to evaluate generations with this Datapoint. This is passed in as an argument to Evaluators when used in an Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "List of chat messages to provide to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "The inputs to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Unique identifier for the Datapoint. Starts with \`dp_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv", + "title": "Upload Csv", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints/csv", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/upload-csv#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "Deploy Dataset to Environment. + +Set the deployed version for the specified Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to deploy the Version to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Object with criteria necessary to evaluate generations with this Datapoint. This is passed in as an argument to Evaluators when used in an Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "List of chat messages to provide to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "The inputs to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints", + "title": "datapoints", + }, + ], + "description": "Unique identifier for the Datapoint. Starts with \`dp_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/datasets/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "Remove deployed Dataset from Environment. + +Remove the deployed version for the specified Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/remove-deployment", + "title": "Remove Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to remove the deployment from.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/datasets/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + ], + "description": "List all Environments and their deployed versions for the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + ], + "description": "Response model for the List Environments endpoint under Files. + +Contains the deployed version of the File, if one is deployed to the Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + ], + "description": "The version of the File that is deployed to the Environment, if one is deployed. + +The version of the File that is deployed to the Environment, if one is deployed.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file", + "title": "file", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file.Flow%20Response", + "title": "Flow Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file.Evaluator%20Response", + "title": "Evaluator Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file.Dataset%20Response", + "title": "Dataset Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file.Tool%20Response", + "title": "Tool Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.file.Prompt%20Response", + "title": "Prompt Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/datasets/list", + "title": "Datasets", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/datasets/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/datasets/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Get a list of all Evaluators.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page offset for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of Evaluators to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for Evaluator name.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for users in the Evaluator. This filter matches against both email address and name of users.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Field to sort Evaluators by", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.sort_by.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.sort_by.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.sort_by.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Direction to sort by.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.order.asc", + "title": "asc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#request.query.order.desc", + "title": "desc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Create an Evaluator or update it with a new version if it already exists. + +Evaluators are identified by the \`ID\` or their \`path\`. The spec provided determines the version of the Evaluator. + +If you provide a commit message, then the new version will be committed; +otherwise it will be uncommitted. If you try to commit an already committed version, +an exception will be raised.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + ], + "description": "ID for an existing Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + ], + "description": "Path of the Evaluator, including the name. This locates the Evaluator in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.External%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The valence of the number judgment. Only for Evaluators with \`return_type\` of \`'number'\`. If 'positive', a higher number is better. If 'negative', a lower number is better. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestnumber_valence.positive", + "title": "positive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestnumber_valence.negative", + "title": "negative", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestnumber_valence.neutral", + "title": "neutral", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Limits on the judgment that can be applied. Only for Evaluators with \`return_type\` of \`'number'\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestnumber_limits", + "title": "number_limits", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The options that the Human annotator can choose from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestoptions", + "title": "options", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Instructions for the Human annotating the .", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestinstructions", + "title": "instructions", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +The type of the return value of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Human%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The code for the Evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestcode", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Code%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The prompt parameters used to generate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#request.body.spec.Llm%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.External%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The valence of the number judgment. Only for Evaluators with \`return_type\` of \`'number'\`. If 'positive', a higher number is better. If 'negative', a lower number is better. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestnumber_valence.positive", + "title": "positive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestnumber_valence.negative", + "title": "negative", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestnumber_valence.neutral", + "title": "neutral", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Limits on the judgment that can be applied. Only for Evaluators with \`return_type\` of \`'number'\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestnumber_limits", + "title": "number_limits", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The options that the Human annotator can choose from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestoptions", + "title": "options", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Instructions for the Human annotating the .", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestinstructions", + "title": "instructions", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +The type of the return value of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The code for the Evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestcode", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The prompt parameters used to generate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Retrieve the Evaluator with the given ID. + +By default, the deployed version of the Evaluator is returned. Use the query parameters +\`version_id\` or \`environment\` to target a specific version of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Evaluator to retrieve.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment to retrieve a deployed Version from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.External%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The valence of the number judgment. Only for Evaluators with \`return_type\` of \`'number'\`. If 'positive', a higher number is better. If 'negative', a lower number is better. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestnumber_valence.positive", + "title": "positive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestnumber_valence.negative", + "title": "negative", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestnumber_valence.neutral", + "title": "neutral", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Limits on the judgment that can be applied. Only for Evaluators with \`return_type\` of \`'number'\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestnumber_limits", + "title": "number_limits", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The options that the Human annotator can choose from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestoptions", + "title": "options", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Instructions for the Human annotating the .", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestinstructions", + "title": "instructions", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +The type of the return value of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The code for the Evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestcode", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The prompt parameters used to generate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Delete the Evaluator with the given ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/delete", + "title": "Delete", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Move the Evaluator to a different path or change the name.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#request", + "title": "Request", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#request", + "title": "Request", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.External%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The valence of the number judgment. Only for Evaluators with \`return_type\` of \`'number'\`. If 'positive', a higher number is better. If 'negative', a lower number is better. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestnumber_valence.positive", + "title": "positive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestnumber_valence.negative", + "title": "negative", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestnumber_valence.neutral", + "title": "neutral", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Limits on the judgment that can be applied. Only for Evaluators with \`return_type\` of \`'number'\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestnumber_limits", + "title": "number_limits", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The options that the Human annotator can choose from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestoptions", + "title": "options", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Instructions for the Human annotating the .", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestinstructions", + "title": "instructions", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +The type of the return value of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The code for the Evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestcode", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The prompt parameters used to generate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluators/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Get a list of all the versions of an Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "Filter versions by status: 'uncommitted', 'committed'. If no status is provided, all versions are returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "Whether to include Evaluator aggregate results for the versions in the response", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#request.query.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Evaluators.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Evaluators. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Commit a version of the Evaluator with a commit message. + +If the version is already committed, an exception will be raised.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.External%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The valence of the number judgment. Only for Evaluators with \`return_type\` of \`'number'\`. If 'positive', a higher number is better. If 'negative', a lower number is better. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestnumber_valence.positive", + "title": "positive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestnumber_valence.negative", + "title": "negative", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestnumber_valence.neutral", + "title": "neutral", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Limits on the judgment that can be applied. Only for Evaluators with \`return_type\` of \`'number'\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestnumber_limits", + "title": "number_limits", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The options that the Human annotator can choose from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestoptions", + "title": "options", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Instructions for the Human annotating the .", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestinstructions", + "title": "instructions", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +The type of the return value of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The code for the Evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestcode", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The prompt parameters used to generate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Deploy Evaluator to an Environment. + +Set the deployed version for the specified Environment. This Evaluator +will be used for calls made to the Evaluator in this Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to deploy the Version to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.inputs", + "title": "inputs", + }, + ], + "description": "Type of input.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.inputs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.External%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The valence of the number judgment. Only for Evaluators with \`return_type\` of \`'number'\`. If 'positive', a higher number is better. If 'negative', a lower number is better. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestnumber_valence.positive", + "title": "positive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestnumber_valence.negative", + "title": "negative", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestnumber_valence.neutral", + "title": "neutral", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Limits on the judgment that can be applied. Only for Evaluators with \`return_type\` of \`'number'\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestnumber_limits", + "title": "number_limits", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The options that the Human annotator can choose from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestoptions", + "title": "options", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Instructions for the Human annotating the .", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestinstructions", + "title": "instructions", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +The type of the return value of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Human%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The code for the Evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestcode", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Code%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The prompt parameters used to generate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.spec.Llm%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Remove deployed Evaluator from the Environment. + +Remove the deployed version for the specified Environment. This Evaluator +will no longer be used for calls made to the Evaluator in this Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/remove-deployment", + "title": "Remove Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to remove the deployment from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluators/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "List all Environments and their deployed versions for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + ], + "description": "Response model for the List Environments endpoint under Files. + +Contains the deployed version of the File, if one is deployed to the Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + ], + "description": "The version of the File that is deployed to the Environment, if one is deployed. + +The version of the File that is deployed to the Environment, if one is deployed.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file", + "title": "file", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file.Flow%20Response", + "title": "Flow Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file.Evaluator%20Response", + "title": "Evaluator Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file.Dataset%20Response", + "title": "Dataset Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file.Tool%20Response", + "title": "Tool Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.file.Prompt%20Response", + "title": "Prompt Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluators/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Submit Evaluator judgment for an existing Log. + +Creates a new Log. The evaluated Log will be set as the parent of the created Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.query", + "title": "Query Parameters", + }, + ], + "description": "ID of the Evaluator version to log against.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment identifying a deployed version to log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Request", + "title": "External Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.External%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The valence of the number judgment. Only for Evaluators with \`return_type\` of \`'number'\`. If 'positive', a higher number is better. If 'negative', a lower number is better. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestnumber_valence.positive", + "title": "positive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestnumber_valence.negative", + "title": "negative", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestnumber_valence", + "title": "number_valence", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestnumber_valence.neutral", + "title": "neutral", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Limits on the judgment that can be applied. Only for Evaluators with \`return_type\` of \`'number'\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestnumber_limits", + "title": "number_limits", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The options that the Human annotator can choose from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestoptions", + "title": "options", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Instructions for the Human annotating the .", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestinstructions", + "title": "instructions", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +The type of the return value of the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Request", + "title": "Human Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Human%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The code for the Evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestcode", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Request", + "title": "Code Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Code%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The prompt parameters used to generate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestattributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestevaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "The type of the return value of the Evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestreturn_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + ], + "description": "Whether this Evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestarguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec", + "title": "spec", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Request", + "title": "Llm Evaluator Request", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestarguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.spec.Llm%20Evaluator%20Requestarguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Evaluator assessment of the Log. + +Evaluator assessment of the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.trace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider. Only populated for LLM Evaluator Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider. Only populated for LLM Evaluator Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider. Only populated for LLM Evaluator Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider. Only populated for LLM Evaluator Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "User defined timestamp for when the log was created. ", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Generated output from the LLM. Only populated for LLM Evaluator Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "ID for an existing Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Path of the Evaluator, including the name. This locates the Evaluator in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#request", + "title": "Request", + }, + ], + "description": "Identifier of the evaluated Log. The newly created Log will have this one set as parent.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#request.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response", + "title": "Response", + }, + ], + "description": "Identifier of the Session containing both the parent and the new child Log. If the parent Log does not belong to a Session, a new Session is created with this ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response", + "title": "Response", + }, + ], + "description": "Identifier of Evaluator Version for which the Log was registered.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response", + "title": "Response", + }, + ], + "description": "Identifier of the evaluated parent Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#response.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response", + "title": "Response", + }, + ], + "description": "String identifier of the new Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v5/api-reference/evaluators/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluators/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluators/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Retrieve the Flow with the given ID. + +By default, the deployed version of the Flow is returned. Use the query parameters +\`version_id\` or \`environment\` to target a specific version of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Flow to retrieve.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment to retrieve a deployed Version from.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/flows/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Delete the Flow with the given ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/delete", + "title": "Delete", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/flows/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/flows/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Move the Flow to a different path or change the name.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/move#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/move#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#request", + "title": "Request", + }, + ], + "description": "Unique identifier for the Directory to move Flow to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#request.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#request", + "title": "Request", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#request", + "title": "Request", + }, + ], + "description": "Path of the Flow including the Flow name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/move", + "title": "Move", + }, + { + "slug": "docs/v5/api-reference/flows/move#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/move#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/move#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Get a list of Flows.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page number for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of Flows to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for Flow name.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for users in the Flow. This filter matches against both email address and name of users.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Field to sort Flows by", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.sort_by.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.sort_by.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.sort_by.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Direction to sort by.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.order.asc", + "title": "asc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/flows/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#request.query.order.desc", + "title": "desc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/flows/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Create or update a Flow. + +Flows can also be identified by the \`ID\` or their \`path\`. + +If you provide a commit message, then the new version will be committed; +otherwise it will be uncommitted. If you try to commit an already committed version, +an exception will be raised.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#request", + "title": "Request", + }, + ], + "description": "ID for an existing Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#request", + "title": "Request", + }, + ], + "description": "Path of the Flow, including the name. This locates the Flow in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#request", + "title": "Request", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#request.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#request", + "title": "Request", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#request.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/upsert", + "title": "Upsert", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/upsert#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/upsert#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Log to a Flow. + +You can use query parameters \`version_id\`, or \`environment\`, to target +an existing version of the Flow. Otherwise, the default deployed version will be chosen.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/log#request.query", + "title": "Query Parameters", + }, + ], + "description": "A specific Version ID of the Flow to log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/log#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/log#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name of the Environment identifying a deployed version to log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/log#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Status of the Trace. When a Trace is marked as \`complete\`, no more Logs can be added to it. Monitoring Evaluators will only run on \`complete\` Traces. If you do not intend to add more Logs to the Trace after creation, set this to \`complete\`. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.trace_status", + "title": "trace_status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/log#request.body.trace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.trace_status.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/log#request.body.trace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.trace_status.incomplete", + "title": "incomplete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Flow used to generate the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.flow", + "title": "flow", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/log#request.body.flow", + "title": "flow", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.flow.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/log#request.body.flow", + "title": "flow", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.flow.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "ID of the Trace. If not provided, one will be assigned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.trace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.trace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "User defined timestamp for when the log was created. ", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "The end time of the Trace. Will be updated if a child Log with a later end time is added.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "The start time of the Trace. Will be updated if a child Log with an earlier start time is added.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "ID for an existing Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Path of the Flow, including the name. This locates the Flow in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#request", + "title": "Request", + }, + ], + "description": "Unique identifier for the Evaluation Report to associate the Log to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#request.body.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + ], + "description": "Response for a Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + ], + "description": "Status of the Trace. When a Trace is marked as \`complete\`, no more Logs can be added to it. Monitoring Evaluators will only run on \`complete\` Traces. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.body.trace_status", + "title": "trace_status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/log#response.body.trace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.body.trace_status.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/log#response.body.trace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.body.trace_status.incomplete", + "title": "incomplete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.body.flow_id", + "title": "flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/log#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/log#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/log", + "title": "Log", + }, + { + "slug": "docs/v5/api-reference/flows/log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Update the status, inputs, output of a Flow Log. + +Marking a Flow Log as complete will trigger any monitoring Evaluators to run. +Inputs and output (or error) must be provided in order to mark it as complete.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier of the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request.path.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request.path.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + }, + ], + "description": "The error message of the Flow Log. Provide None to unset existing \`error\` value. Provide either this or \`output\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + }, + ], + "description": "The output of the Flow Log. Provide None to unset existing \`output\` value. Provide either this or \`error\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + }, + ], + "description": "Status of the Trace. When a Trace is marked as \`complete\`, no more Logs can be added to it. Monitoring Evaluators will only run on completed Traces. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request.body.trace_status", + "title": "trace_status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request.body.trace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request.body.trace_status.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#request.body.trace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#request.body.trace_status.incomplete", + "title": "incomplete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Status of the Trace. When a Trace is marked as \`complete\`, no more Logs can be added to it. Monitoring Evaluators will only run on completed Traces. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_status", + "title": "trace_status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_status.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_status.incomplete", + "title": "incomplete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_children", + "title": "trace_children", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_children.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_children", + "title": "trace_children", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_children.Tool%20Log%20Response", + "title": "Tool Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_children", + "title": "trace_children", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_children.Prompt%20Log%20Response", + "title": "Prompt Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.trace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Flow used to generate the Log. + +Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow", + "title": "flow", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.flow.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "The Log that was evaluated. Only provided if the ?include_parent query parameter is set for the", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.parent", + "title": "parent", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.trace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.trace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.trace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Evaluator assessment of the Log. + +Evaluator assessment of the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.batches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.trace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Identifier of the evaluated Log. The newly created Log will have this one set as parent.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.end_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.start_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Evaluator used to generate the judgment. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.evaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs", + "title": "evaluator_logs", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.evaluator_logs.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-log", + "title": "Update Log", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/update-log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/logs/", + }, + { + "type": "pathParameter", + "value": "log_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/flows/update-log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Get a list of all the versions of a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "Filter versions by status: 'uncommitted', 'committed'. If no status is provided, all versions are returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#request.query.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#request.query.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#request.query.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#request.query.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": "Whether to include Evaluator aggregate results for the versions in the response", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#request.query.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#request.query.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Flows.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + ], + "description": "The list of Flows. + +Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records", + "title": "records", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.body.records.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions", + "title": "List Versions", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/list-versions#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-versions#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Commit a version of the Flow with a commit message. + +If the version is already committed, an exception will be raised.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/commit#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#request.path.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#request", + "title": "Request", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#request.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/commit", + "title": "Commit", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/commit#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/versions/", + }, + { + "type": "pathParameter", + "value": "version_id", + }, + { + "type": "literal", + "value": "/commit", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/commit#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Deploy Flow to an Environment. + +Set the deployed version for the specified Environment. This Flow +will be used for calls made to the Flow in this Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": "Unique identifier for the specific version of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to deploy the Version to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment", + "title": "Set Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/set-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/set-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Remove deployed Flow from the Environment. + +Remove the deployed version for the specified Environment. This Flow +will no longer be used for calls made to the Flow in this Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/remove-deployment", + "title": "Remove Deployment", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/remove-deployment#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for the Environment to remove the deployment from.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/remove-deployment#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment", + "title": "Remove Deployment", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/flows/remove-deployment#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "List all Environments and their deployed versions for the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + ], + "description": "Response model for the List Environments endpoint under Files. + +Contains the deployed version of the File, if one is deployed to the Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + ], + "description": "The version of the File that is deployed to the Environment, if one is deployed. + +The version of the File that is deployed to the Environment, if one is deployed.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file", + "title": "file", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file.Flow%20Response", + "title": "Flow Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file.Evaluator%20Response", + "title": "Evaluator Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file.Dataset%20Response", + "title": "Dataset Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file.Tool%20Response", + "title": "Tool Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file", + "title": "file", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.file.Prompt%20Response", + "title": "Prompt Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.body.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments", + "title": "List Environments", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/list-environments#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/environments", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/flows/list-environments#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + ], + "description": "Activate and deactivate Evaluators for monitoring the Flow. + +An activated Evaluator will automatically be run on all new "completed" Logs +within the Flow for monitoring purposes.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to deactivate. These will not be run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.deactivate", + "title": "deactivate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to deactivate. These will not be run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.deactivate", + "title": "deactivate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.deactivate", + "title": "deactivate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.deactivate.Monitoring%20Evaluator%20Environment%20Request", + "title": "Monitoring Evaluator Environment Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.deactivate", + "title": "deactivate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.deactivate.Monitoring%20Evaluator%20Version%20Request", + "title": "Monitoring Evaluator Version Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to activate for Monitoring. These will be automatically run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.activate", + "title": "activate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + ], + "description": "Evaluators to activate for Monitoring. These will be automatically run on new Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.activate", + "title": "activate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.activate", + "title": "activate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.activate.Monitoring%20Evaluator%20Environment%20Request", + "title": "Monitoring Evaluator Environment Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.activate", + "title": "activate", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#request.body.activate.Monitoring%20Evaluator%20Version%20Request", + "title": "Monitoring Evaluator Version Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The deployed Version. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The state of the Monitoring Evaluator. Either \`active\` or \`inactive\` + +State of an evaluator connected to a file", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators.state", + "title": "state", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators.state.active", + "title": "active", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators.state", + "title": "state", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators.state.inactive", + "title": "inactive", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The Evaluator Version used for monitoring. This can be a specific Version by ID, or a Version deployed to an Environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluators.version_reference", + "title": "version_reference", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "ID of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": "The aggregated value of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.evaluator_aggregates.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments.tag", + "title": "tag", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments.tag.default", + "title": "default", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments", + "title": "environments", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments.tag", + "title": "tag", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments.tag.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments", + "title": "environments", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.body.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/flows/get", + "title": "Flows", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring", + "title": "Update Monitoring", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/flows/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/flows/update-monitoring#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + ], + "description": "Get a paginated list of files.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list", + "title": "List", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page offset for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of files to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for file name.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "List of file types to filter for.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Enum for File types.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.type.prompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.type.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.type.flow", + "title": "flow", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-sensitive filter for files with a deployment in the specified environment. Requires the environment name.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Field to sort files by", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.sort_by.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.sort_by.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.sort_by.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Direction to sort by.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.order.asc", + "title": "asc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/files/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#request.query.order.desc", + "title": "desc", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/files/list#response.body.records", + "title": "records", + }, + ], + "description": "Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.records.Flow%20Response", + "title": "Flow Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/files/list#response.body.records", + "title": "records", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.records.Evaluator%20Response", + "title": "Evaluator Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/files/list#response.body.records", + "title": "records", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.records.Dataset%20Response", + "title": "Dataset Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/files/list#response.body.records", + "title": "records", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.records.Tool%20Response", + "title": "Tool Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/files/list#response.body.records", + "title": "records", + }, + ], + "description": "Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.body.records.Prompt%20Response", + "title": "Prompt Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/files/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/files/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/files/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/files/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/files/list", + "title": "Files", + }, + { + "slug": "docs/v5/api-reference/files/list", + "title": "List", + }, + { + "slug": "docs/v5/api-reference/files/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/files/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/files/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/files", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/files/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + ], + "description": "List all Evaluations for the specified \`file_id\`. + +Retrieve a list of Evaluations that evaluate versions of the specified File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Filter by File ID. Only Evaluations for the specified File will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#request.query.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#request.query.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page number for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of Evaluations to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "URL to view the Evaluation on the Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.url", + "title": "url", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the File associated with the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "Name of the Evaluation to help identify it. Must be unique among Evaluations associated with File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "The current status of the Evaluation. + +- \`"pending"\`: The Evaluation has been created but is not actively being worked on by Humanloop. +- \`"running"\`: Humanloop is checking for any missing Logs and Evaluator Logs, and will generate them where appropriate. +- \`"completed"\`: All Logs an Evaluator Logs have been generated. +- \`"cancelled"\`: The Evaluation has been cancelled by the user. Humanloop will stop generating Logs and Evaluator Logs. + +Status of an evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.status.cancelled", + "title": "cancelled", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "The Evaluator Versions used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "The Prompt/Tool Versions included in the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "The Dataset used in the Evaluation. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique identifier for the Evaluation. Starts with \`evr\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + ], + "description": "Create an Evaluation. + +Create a new Evaluation by specifying the Dataset, versions to be +evaluated (Evaluatees), and which Evaluators to provide judgments. + +Humanloop will automatically start generating Logs and running Evaluators where +\`orchestrated=true\`. If you own the runtime for the Evaluatee or Evaluator, you +can set \`orchestrated=false\` and then generate and submit the required logs using +your runtime. + +To keep updated on the progress of the Evaluation, you can poll the Evaluation using +the GET /evaluations/{id} endpoint and check its status.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + ], + "description": "The File to associate with the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.file", + "title": "file", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.file", + "title": "file", + }, + ], + "description": "Path of the File, including the name. This locates the File in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.file.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.file", + "title": "file", + }, + ], + "description": "ID for an existing File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.file.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + ], + "description": "Name of the Evaluation to help identify it. Must be unique within the associated File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + ], + "description": "Unique identifiers for the Prompt/Tool Versions to include in the Evaluation. Can be left unpopulated if you wish to add Evaluatees to this Evaluation by specifying \`evaluation_id\` in Log calls.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + ], + "description": "Unique identifiers for the Prompt/Tool Versions to include in the Evaluation. Can be left unpopulated if you wish to add Evaluatees to this Evaluation by specifying \`evaluation_id\` in Log calls. + +Specification of a File version on Humanloop. + +This can be done in a couple of ways: + +- Specifying \`version_id\` directly. +- Specifying a File (and optionally an Environment). + - A File can be specified by either \`path\` or \`file_id\`. + - An Environment can be specified by \`environment_id\`. If no Environment is specified, the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Whether the Prompt/Tool is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Prompt/Tool should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the batch of Logs to include in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees.batch_id", + "title": "batch_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Name of the Environment a Version is deployed to. Only provide this when specifying a File. If not provided (and a File is specified), the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the File. Provide either this or \`path\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Path identifying a File. Provide either this or \`file_id\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the File Version. If provided, none of the other fields should be specified.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluatees.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + ], + "description": "The Evaluators used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + ], + "description": "The Evaluators used to evaluate. + +Specification of a File version on Humanloop. + +This can be done in a couple of ways: + +- Specifying \`version_id\` directly. +- Specifying a File (and optionally an Environment). + - A File can be specified by either \`path\` or \`file_id\`. + - An Environment can be specified by \`environment_id\`. If no Environment is specified, the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Whether the Evaluator is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Evaluator should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Name of the Environment a Version is deployed to. Only provide this when specifying a File. If not provided (and a File is specified), the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Unique identifier for the File. Provide either this or \`path\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Path identifying a File. Provide either this or \`file_id\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Unique identifier for the File Version. If provided, none of the other fields should be specified.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.evaluators.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + ], + "description": "Dataset to use in this Evaluation. + +Specification of a File version on Humanloop. + +This can be done in a couple of ways: + +- Specifying \`version_id\` directly. +- Specifying a File (and optionally an Environment). + - A File can be specified by either \`path\` or \`file_id\`. + - An Environment can be specified by \`environment_id\`. If no Environment is specified, the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.dataset", + "title": "dataset", + }, + ], + "description": "Name of the Environment a Version is deployed to. Only provide this when specifying a File. If not provided (and a File is specified), the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.dataset.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the File. Provide either this or \`path\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.dataset.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.dataset", + "title": "dataset", + }, + ], + "description": "Path identifying a File. Provide either this or \`file_id\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.dataset.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#request.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the File Version. If provided, none of the other fields should be specified.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#request.body.dataset.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "URL to view the Evaluation on the Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.url", + "title": "url", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the File associated with the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "Name of the Evaluation to help identify it. Must be unique among Evaluations associated with File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "The current status of the Evaluation. + +- \`"pending"\`: The Evaluation has been created but is not actively being worked on by Humanloop. +- \`"running"\`: Humanloop is checking for any missing Logs and Evaluator Logs, and will generate them where appropriate. +- \`"completed"\`: All Logs an Evaluator Logs have been generated. +- \`"cancelled"\`: The Evaluation has been cancelled by the user. Humanloop will stop generating Logs and Evaluator Logs. + +Status of an evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.status.cancelled", + "title": "cancelled", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "The Evaluator Versions used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "The Evaluator Versions used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Whether the Evaluator is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Evaluator should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluators.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "The Prompt/Tool Versions included in the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "The Prompt/Tool Versions included in the Evaluation. + +Version of the Evaluatee being evaluated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the batch of Logs to include in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluatees.batch_id", + "title": "batch_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Whether the Prompt/Tool is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Prompt/Tool should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluatees.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.evaluatees.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "The Dataset used in the Evaluation. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.dataset.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Evaluation. Starts with \`evr\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/create", + "title": "Create", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v5/api-reference/evaluations/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + ], + "description": "Get an Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "URL to view the Evaluation on the Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.url", + "title": "url", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the File associated with the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "Name of the Evaluation to help identify it. Must be unique among Evaluations associated with File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "The current status of the Evaluation. + +- \`"pending"\`: The Evaluation has been created but is not actively being worked on by Humanloop. +- \`"running"\`: Humanloop is checking for any missing Logs and Evaluator Logs, and will generate them where appropriate. +- \`"completed"\`: All Logs an Evaluator Logs have been generated. +- \`"cancelled"\`: The Evaluation has been cancelled by the user. Humanloop will stop generating Logs and Evaluator Logs. + +Status of an evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.status.cancelled", + "title": "cancelled", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "The Evaluator Versions used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "The Evaluator Versions used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Whether the Evaluator is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Evaluator should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluators.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "The Prompt/Tool Versions included in the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "The Prompt/Tool Versions included in the Evaluation. + +Version of the Evaluatee being evaluated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the batch of Logs to include in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluatees.batch_id", + "title": "batch_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Whether the Prompt/Tool is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Prompt/Tool should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluatees.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.evaluatees.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "The Dataset used in the Evaluation. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.dataset.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Evaluation. Starts with \`evr\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get", + "title": "Get", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + ], + "description": "Delete an Evaluation. + +Remove an Evaluation from Humanloop. The Logs and Versions used in the Evaluation +will not be deleted.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluations/delete", + "title": "Delete", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluations/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluations/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluations/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluations/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluations/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/evaluations/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + ], + "description": "Update an Evaluation. + +Update the setup of an Evaluation by specifying the Dataset, versions to be +evaluated (Evaluatees), and which Evaluators to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + ], + "description": "The File to associate with the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.file", + "title": "file", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.file", + "title": "file", + }, + ], + "description": "Path of the File, including the name. This locates the File in the Humanloop filesystem and is used as as a unique identifier. Example: \`folder/name\` or just \`name\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.file.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.file", + "title": "file", + }, + ], + "description": "ID for an existing File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.file.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + ], + "description": "Name of the Evaluation to help identify it. Must be unique within the associated File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + ], + "description": "The Evaluators used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + ], + "description": "The Evaluators used to evaluate. + +Specification of a File version on Humanloop. + +This can be done in a couple of ways: + +- Specifying \`version_id\` directly. +- Specifying a File (and optionally an Environment). + - A File can be specified by either \`path\` or \`file_id\`. + - An Environment can be specified by \`environment_id\`. If no Environment is specified, the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Whether the Evaluator is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Evaluator should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Name of the Environment a Version is deployed to. Only provide this when specifying a File. If not provided (and a File is specified), the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Unique identifier for the File. Provide either this or \`path\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Path identifying a File. Provide either this or \`file_id\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Unique identifier for the File Version. If provided, none of the other fields should be specified.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluators.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + ], + "description": "Unique identifiers for the Prompt/Tool Versions to include in the Evaluation. Can be left unpopulated if you wish to add evaluatees to this Evaluation by specifying \`evaluation_id\` in Log calls.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + ], + "description": "Unique identifiers for the Prompt/Tool Versions to include in the Evaluation. Can be left unpopulated if you wish to add evaluatees to this Evaluation by specifying \`evaluation_id\` in Log calls. + +Specification of a File version on Humanloop. + +This can be done in a couple of ways: + +- Specifying \`version_id\` directly. +- Specifying a File (and optionally an Environment). + - A File can be specified by either \`path\` or \`file_id\`. + - An Environment can be specified by \`environment_id\`. If no Environment is specified, the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Whether the Prompt/Tool is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Prompt/Tool should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the batch of Logs to include in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees.batch_id", + "title": "batch_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Name of the Environment a Version is deployed to. Only provide this when specifying a File. If not provided (and a File is specified), the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the File. Provide either this or \`path\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Path identifying a File. Provide either this or \`file_id\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the File Version. If provided, none of the other fields should be specified.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.evaluatees.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + ], + "description": "Dataset to use in this Evaluation. + +Specification of a File version on Humanloop. + +This can be done in a couple of ways: + +- Specifying \`version_id\` directly. +- Specifying a File (and optionally an Environment). + - A File can be specified by either \`path\` or \`file_id\`. + - An Environment can be specified by \`environment_id\`. If no Environment is specified, the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.dataset", + "title": "dataset", + }, + ], + "description": "Name of the Environment a Version is deployed to. Only provide this when specifying a File. If not provided (and a File is specified), the default Environment is used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.dataset.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the File. Provide either this or \`path\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.dataset.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.dataset", + "title": "dataset", + }, + ], + "description": "Path identifying a File. Provide either this or \`file_id\` if you want to specify a File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.dataset.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the File Version. If provided, none of the other fields should be specified.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#request.body.dataset.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "URL to view the Evaluation on the Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.url", + "title": "url", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the File associated with the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "Name of the Evaluation to help identify it. Must be unique among Evaluations associated with File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "The current status of the Evaluation. + +- \`"pending"\`: The Evaluation has been created but is not actively being worked on by Humanloop. +- \`"running"\`: Humanloop is checking for any missing Logs and Evaluator Logs, and will generate them where appropriate. +- \`"completed"\`: All Logs an Evaluator Logs have been generated. +- \`"cancelled"\`: The Evaluation has been cancelled by the user. Humanloop will stop generating Logs and Evaluator Logs. + +Status of an evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.status.cancelled", + "title": "cancelled", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "The Evaluator Versions used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "The Evaluator Versions used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Whether the Evaluator is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Evaluator should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluators.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "The Prompt/Tool Versions included in the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "The Prompt/Tool Versions included in the Evaluation. + +Version of the Evaluatee being evaluated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the batch of Logs to include in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluatees.batch_id", + "title": "batch_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Whether the Prompt/Tool is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Prompt/Tool should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluatees.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.evaluatees.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "The Dataset used in the Evaluation. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.dataset.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Evaluation. Starts with \`evr\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup", + "title": "Update Setup", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-setup#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + ], + "description": "Update the status of an Evaluation. + +Can be used to cancel a running Evaluation, or mark an Evaluation that uses +external or human evaluators as completed.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request", + "title": "Request", + }, + ], + "description": "Status of an evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#request.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#request.body.status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#request.body.status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#request.body.status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#request.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#request.body.status.cancelled", + "title": "cancelled", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "URL to view the Evaluation on the Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.url", + "title": "url", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the File associated with the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "Name of the Evaluation to help identify it. Must be unique among Evaluations associated with File.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "The current status of the Evaluation. + +- \`"pending"\`: The Evaluation has been created but is not actively being worked on by Humanloop. +- \`"running"\`: Humanloop is checking for any missing Logs and Evaluator Logs, and will generate them where appropriate. +- \`"completed"\`: All Logs an Evaluator Logs have been generated. +- \`"cancelled"\`: The Evaluation has been cancelled by the user. Humanloop will stop generating Logs and Evaluator Logs. + +Status of an evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.status.cancelled", + "title": "cancelled", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "The Evaluator Versions used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "The Evaluator Versions used to evaluate.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Whether the Evaluator is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Evaluator should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluators.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluators.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "The Prompt/Tool Versions included in the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "The Prompt/Tool Versions included in the Evaluation. + +Version of the Evaluatee being evaluated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluatees", + "title": "evaluatees", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Unique identifier for the batch of Logs to include in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluatees.batch_id", + "title": "batch_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": "Whether the Prompt/Tool is orchestrated by Humanloop. Default is \`True\`. If \`False\`, a log for the Prompt/Tool should be submitted by the user via the API.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluatees.orchestrated", + "title": "orchestrated", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluatees", + "title": "evaluatees", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.evaluatees.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "The Dataset used in the Evaluation. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Additional fields to describe the Dataset. Helpful to separate Dataset versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of Datapoints in this Dataset version. Only provided if explicitly requested.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.datapoints", + "title": "datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Dataset is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The user who created the Dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The list of environments the Dataset Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The number of Datapoints in this Dataset version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "The status of the Dataset Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the specific Dataset Version. If no query params provided, the default deployed Dataset Version is returned. Starts with \`dsv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Name of the Dataset, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Unique identifier for the Dataset. Starts with \`ds_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Path of the Dataset, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.dataset.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + ], + "description": "Unique identifier for the Evaluation. Starts with \`evr\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status", + "title": "Update Status", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/update-status#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/status", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v5/api-reference/evaluations/update-status#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + ], + "description": "Get Evaluation Stats. + +Retrieve aggregate stats for the specified Evaluation. +This includes the number of generated Logs for each evaluated version and the +corresponding Evaluator statistics (such as the mean and percentiles).", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + ], + "description": "A summary string report of the Evaluation you can print to command line;helpful when integrating Evaluations with CI/CD.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.report", + "title": "report", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + ], + "description": "A summary string report of the Evaluation's progress you can print to the command line;helpful when integrating Evaluations with CI/CD.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.progress", + "title": "progress", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + ], + "description": "The current status of the Evaluation. + +Status of an evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.status.cancelled", + "title": "cancelled", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + ], + "description": "Stats for each Evaluated Version in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.version_stats", + "title": "version_stats", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + ], + "description": "Stats for each Evaluated Version in the Evaluation Report. + +Stats for an Evaluated Version in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.version_stats", + "title": "version_stats", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.version_stats", + "title": "version_stats", + }, + ], + "description": "Stats for each Evaluator Version used to evaluate this Evaluated Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.version_stats.evaluator_version_stats", + "title": "evaluator_version_stats", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.version_stats", + "title": "version_stats", + }, + ], + "description": "The total number of existing Logs for this Evaluated Version within the Evaluation Report. These are Logs that have been generated by this Evaluated Version on a Datapoint belonging to the Evaluation Report's Dataset Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.version_stats.num_logs", + "title": "num_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.version_stats", + "title": "version_stats", + }, + ], + "description": "Unique identifier for the Evaluated Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.version_stats.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + ], + "description": "Stats for the Evaluation Report as a whole.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.overall_stats", + "title": "overall_stats", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.overall_stats", + "title": "overall_stats", + }, + ], + "description": "The total number of Evaluator Logs in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.overall_stats.total_evaluator_logs", + "title": "total_evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.overall_stats", + "title": "overall_stats", + }, + ], + "description": "The total number of Logs in the Evaluation Report.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.overall_stats.total_logs", + "title": "total_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.overall_stats", + "title": "overall_stats", + }, + ], + "description": "The total number of Datapoints in the Evaluation Report's Dataset Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.body.overall_stats.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats", + "title": "Get Stats", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/stats", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-stats#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + ], + "description": "Get the Logs associated to a specific Evaluation. + +Each Datapoint in your Dataset will have a corresponding Log for each File version evaluated. +e.g. If you have 50 Datapoints and are evaluating 2 Prompts, there will be 100 Logs associated with the Evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page number for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of Logs to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of evaluation. Starts with \`ev_\` or \`evr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records", + "title": "records", + }, + ], + "description": "The Log that was evaluated by the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records.log", + "title": "log", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records", + "title": "records", + }, + ], + "description": "The Evaluator Logs containing the judgments for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records.evaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records", + "title": "records", + }, + ], + "description": "The Datapoint used to generate the Log", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records.datapoint", + "title": "datapoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records", + "title": "records", + }, + ], + "description": "The version of the Prompt, Tool or Evaluator that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.body.records.evaluated_version", + "title": "evaluated_version", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/evaluations/list", + "title": "Evaluations", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs", + "title": "Get Logs", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/evaluations/get-logs#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + ], + "description": "List all Logs for the given filter criteria.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Unique identifier for the File to list Logs for.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.file_id", + "title": "file_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page number for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of Logs to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "If provided, only Logs belonging to the specified Version will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "If provided, only Logs belonging to Versions with the specified status will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.version_status", + "title": "version_status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.version_status", + "title": "version_status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query.version_status", + "title": "version_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.version_status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query.version_status", + "title": "version_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.version_status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query.version_status", + "title": "version_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.version_status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "If provided, only Logs that contain the provided string in its inputs and output will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.search", + "title": "search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.search", + "title": "search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "If provided, only Logs that contain the provided string in its metadata will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.metadata_search", + "title": "metadata_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.metadata_search", + "title": "metadata_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "If provided, only Logs created after the specified date will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.start_date", + "title": "start_date", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.start_date", + "title": "start_date", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "If provided, only Logs created before the specified date will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.end_date", + "title": "end_date", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.end_date", + "title": "end_date", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "If true, include the full parent Log in the response. Only applicable when retrieving Evaluator Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.include_parent", + "title": "include_parent", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.include_parent", + "title": "include_parent", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "If true, return Logs that are associated to a Trace. False, return Logs that are not associated to a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.in_trace_filter", + "title": "in_trace_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#request.query.in_trace_filter", + "title": "in_trace_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.body.records", + "title": "records", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.body.records.Flow%20Log%20Response", + "title": "Flow Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.body.records", + "title": "records", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.body.records.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.body.records", + "title": "records", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.body.records.Tool%20Log%20Response", + "title": "Tool Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.body.records", + "title": "records", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.body.records.Prompt%20Log%20Response", + "title": "Prompt Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/list", + "title": "List ", + }, + { + "slug": "docs/v5/api-reference/logs/list#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/logs/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + ], + "description": "Delete Logs with the given IDs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/logs/delete", + "title": "Delete", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/logs/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/delete#request.query", + "title": "Query Parameters", + }, + ], + "description": "Unique identifiers for the Logs to delete.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/logs/delete#request.query.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/logs/delete#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/delete#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/logs/delete#request.query.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/logs/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/logs/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/logs/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/delete", + "title": "Delete", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/logs/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v5/api-reference/logs/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + ], + "description": "Retrieve the Log with the given ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + "type": "endpoint-v4", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "Unique identifier for Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#request", + "title": "Request", + }, + { + "slug": "docs/v5/api-reference/logs/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Status of the Trace. When a Trace is marked as \`complete\`, no more Logs can be added to it. Monitoring Evaluators will only run on completed Traces. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsetrace_status", + "title": "trace_status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsetrace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsetrace_status.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsetrace_status", + "title": "trace_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsetrace_status.incomplete", + "title": "incomplete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "The inputs passed to the Flow Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Flow used to generate the Log. + +Response model for a Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The list of Monitoring Evaluators associated with the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Aggregation of Evaluator results for the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The user who created the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The list of environments the Flow Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Message describing the changes made. If provided, a committed version of the Flow is created. Otherwise, an uncommitted version is created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The number of logs that have been generated for this Flow Version", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "The status of the Flow Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Unique identifier for the specific Flow Version. If no query params provided, the default deployed Flow Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Name of the Flow.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "A key-value object identifying the Flow Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Unique identifier for the Flow. Starts with fl\\_.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow", + "title": "flow", + }, + ], + "description": "Path of the Flow, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseflow.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Response", + "title": "Flow Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Flow%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Evaluator assessment of the Log. + +Evaluator assessment of the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsejudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifier of the evaluated Log. The newly created Log will have this one set as parent.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseparent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Evaluator used to generate the judgment. + +Version of the Evaluator used to provide judgments.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Additional fields to describe the Evaluator. Helpful to separate Evaluator versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Aggregation of Evaluator results for the Evaluator Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Evaluators that have been attached to this Evaluator that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The user who created the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The list of environments the Evaluator Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Inputs associated to the Evaluator. Inputs correspond to any of the variables used within the Evaluator template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The number of logs that have been generated across all Evaluator Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "The number of logs that have been generated for this Evaluator Version", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Unique identifier for the specific Evaluator Version. If no query params provided, the default deployed Evaluator Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Name of the Evaluator, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.spec", + "title": "spec", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Unique identifier for the Evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator", + "title": "evaluator", + }, + ], + "description": "Path of the Evaluator including the Evaluator name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Response", + "title": "Evaluator Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Evaluator%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Tool used to generate the Log. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Aggregation of Evaluator results for the Tool Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Signature of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Evaluators that have been attached to this Tool that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The user who created the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The list of environments the Tool Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Type of Tool. + +Type of tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type.pinecone_search", + "title": "pinecone_search", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type.snippet", + "title": "snippet", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type", + "title": "tool_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.tool_type.get_api_call", + "title": "get_api_call", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Additional fields to describe the Tool. Helpful to separate Tool versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Values needed to setup the Tool, defined in JSON Schema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.setup_values", + "title": "setup_values", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Code source of the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Callable function specification of the Tool shown to the model for tool calling.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.function", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Tool template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The number of logs that have been generated across all Tool Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The number of logs that have been generated for this Tool Version", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "The status of the Tool Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Unique identifier for the specific Tool Version. If no query params provided, the default deployed Tool Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Name of the Tool, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Unique identifier for the Tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool", + "title": "tool", + }, + ], + "description": "Path of the Tool, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responsetool.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Response", + "title": "Tool Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Tool%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Logs nested under this Log in the Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetrace_children", + "title": "trace_children", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Identifier for the Trace that the Log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetrace_id", + "title": "trace_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Identifier for the Flow that the Trace belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetrace_flow_id", + "title": "trace_flow_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsesave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The name of the Environment the Log is associated to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "End-user ID related to the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Array of Batch Ids that this log is part of. Batches are used to group Logs together for offline Evaluations", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsebatches", + "title": "batches", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The ID of the parent Log to nest this Log under in a Trace.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetrace_parent_id", + "title": "trace_parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Unique identifier for the Datapoint that this Log is derived from. This can be used by Humanloop to associate Logs to Evaluations. If provided, Humanloop will automatically associate this Log to Evaluations that require a Log for this Datapoint-Version pair.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsesource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsemetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsesource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsestdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprovider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseerror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if creating a parent Log with the intention to populate it later.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "When the logged event ended.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseend_time", + "title": "end_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "When the logged event started.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsestart_time", + "title": "start_time", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: + +- \`'none'\` means the model will not call any tool and instead generates a message; this is the default when no tools are provided as part of the Prompt. +- \`'auto'\` means the model can decide to call one or more of the provided tools; this is the default when tools are provided as part of the Prompt. +- \`'required'\` means the model can decide to call one or more of the provided tools. +- \`{'type': 'function', 'function': {name': }}\` forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsetool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsemessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsemessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responsefinish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseoutput_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "List of Evaluator Logs associated with the Log. These contain Evaluator judgments on the Log. + +General request for creating a Log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseevaluator_logs", + "title": "evaluator_logs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Unique identifier for the Log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + ], + "description": "Prompt used to generate the Log. + +Base type that all File Responses should inherit from. + +Attributes defined here are common to all File Responses and should be overridden +in the inheriting classes with documentation and appropriate Field definitions.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Aggregation of Evaluator results for the Prompt Version.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Evaluators that have been attached to this Prompt that are used for monitoring logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The user who created the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The list of environments the Prompt Version is deployed to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Message describing the changes made.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.commit_message", + "title": "commit_message", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Additional fields to describe the Prompt. Helpful to separate Prompt versions from each other with details on how they were created or used.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.attributes", + "title": "attributes", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The tools linked to your prompt that the model can call.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.linked_tools", + "title": "linked_tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The tool specification that the model can choose to call if Tool calling is supported.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The format of the response. Only \`{"type": "json_object"}\` is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}. + +For chat endpoint, provide a Chat template. For completion endpoint, provide a Prompt template. Input variables within the template should be specified with double curly bracket syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.template", + "title": "template", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "ID of the directory that the file is in on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Inputs associated to the Prompt. Inputs correspond to any of the variables used within the Prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The number of logs that have been generated across all Prompt Versions", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.total_logs_count", + "title": "total_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The number of logs that have been generated for this Prompt Version", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.version_logs_count", + "title": "version_logs_count", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.last_used_at", + "title": "last_used_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The status of the Prompt Version. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.status.uncommitted", + "title": "uncommitted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.status.committed", + "title": "committed", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.status.deleted", + "title": "deleted", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Unique identifier for the specific Prompt Version. If no query params provided, the default deployed Prompt Version is returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Name of the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "The model instance used, e.g. \`gpt-4\`. See [supported models](https://humanloop.com/docs/supported-models)", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Unique identifier for the Prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Response", + "title": "Prompt Log Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt", + "title": "prompt", + }, + ], + "description": "Path of the Prompt, including the name, which is used as a unique identifier.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.body.Prompt%20Log%20Responseprompt.path", + "title": "path", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v5/api-reference/logs/get", + "title": "Get Log", + }, + { + "slug": "docs/v5/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v5/api-reference/logs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v5/api-reference/logs/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v5.0", + "slug": "docs/getting-started/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + ], + "description": "Get a chat response by providing details of the model configuration in the request.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "NB: Deprecated with new tool_choice. Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'name': } forces the model to use the provided tool of the same name. + +NB: Deprecated with new tool_choice. Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'name': } forces the model to use the provided tool of the same name.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "Deprecated field: the seed is instead set as part of the request.config object.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "Whether to return the inputs in the response. If false, the response will contain an empty dictionary under inputs. This is useful for reducing the size of the response. Defaults to true.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.return_inputs", + "title": "return_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "The number of generations.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "API keys required by each provider to make API calls. The API keys provided here are not stored by Humanloop. If not specified here, Humanloop will fall back to the key saved to your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys", + "title": "provider_api_keys", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys.openai_azure_endpoint", + "title": "openai_azure_endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys.ai21", + "title": "ai21", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.provider_api_keys.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "Unique ID of a project to associate to the log. Either this or \`project\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "Unique project name. If no project exists with this name, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "The model configuration used to create a chat response. + +Chat model config request.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Make tools available to OpenAIs chat model as functions.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Make tools available to OpenAIs chat model as functions.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.model_config.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#request", + "title": "Request", + }, + ], + "description": "If true, tokens will be sent as data-only server-sent events. If num_samples > 1, samples are streamed back independently.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#request.body.stream", + "title": "stream", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + ], + "description": "Overwrite GenerateResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "The number of chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses. + +Overwrite DataResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "Deprecated: Please use tool_calls field within the output_message.JSON definition of the tool to call and the corresponding argument values. Will be populated when finish_reason='tool_call'. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "Deprecated: Please use tool_calls field within the output_message.JSON definition of the tools to call and the corresponding argument values. Will be populated when finish_reason='tool_call'.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "Results of any tools run during the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.tool_results", + "title": "tool_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "Why the generation ended. One of 'stop' (indicating a stop token was encountered), or 'length' (indicating the max tokens limit has been reached), or 'tool_call' (indicating that the model has chosen to call a tool - in which case the tool_call parameter of the response will be populated). It will be set as null for the intermediary responses during a stream, and will only be set as non-null for the final streamed token.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "The inputs passed to the chat template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "The model configuration used to create the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "Raw output text returned from the provider model.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "Output text returned from the provider model with leading and trailing whitespaces stripped.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "The index for the sampled generation for a given input. The num_samples request parameter controls how many samples are generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.index", + "title": "index", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.body.data", + "title": "data", + }, + ], + "description": "Unique ID for the model inputs and output logged to Humanloop. Use this when recording feedback later.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.body.data.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chat", + }, + { + "slug": "docs/v4/api-reference/chats/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/chats/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + ], + "description": "Get a chat response using the project's active deployment. + +The active deployment can be a specific model configuration.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "NB: Deprecated with new tool_choice. Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'name': } forces the model to use the provided tool of the same name. + +NB: Deprecated with new tool_choice. Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'name': } forces the model to use the provided tool of the same name.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "Deprecated field: the seed is instead set as part of the request.config object.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "The environment name used to create a chat response. If not specified, the default environment will be used.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "Whether to return the inputs in the response. If false, the response will contain an empty dictionary under inputs. This is useful for reducing the size of the response. Defaults to true.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.return_inputs", + "title": "return_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "The number of generations.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "API keys required by each provider to make API calls. The API keys provided here are not stored by Humanloop. If not specified here, Humanloop will fall back to the key saved to your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys.openai_azure_endpoint", + "title": "openai_azure_endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys.ai21", + "title": "ai21", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.provider_api_keys.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "Unique ID of a project to associate to the log. Either this or \`project\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "Unique project name. If no project exists with this name, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#request", + "title": "Request", + }, + ], + "description": "If true, tokens will be sent as data-only server-sent events. If num_samples > 1, samples are streamed back independently.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#request.body.stream", + "title": "stream", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + ], + "description": "Overwrite GenerateResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "The number of chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses. + +Overwrite DataResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Deprecated: Please use tool_calls field within the output_message.JSON definition of the tool to call and the corresponding argument values. Will be populated when finish_reason='tool_call'. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Deprecated: Please use tool_calls field within the output_message.JSON definition of the tools to call and the corresponding argument values. Will be populated when finish_reason='tool_call'.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Results of any tools run during the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.tool_results", + "title": "tool_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Why the generation ended. One of 'stop' (indicating a stop token was encountered), or 'length' (indicating the max tokens limit has been reached), or 'tool_call' (indicating that the model has chosen to call a tool - in which case the tool_call parameter of the response will be populated). It will be set as null for the intermediary responses during a stream, and will only be set as non-null for the final streamed token.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "The inputs passed to the chat template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "The model configuration used to create the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Raw output text returned from the provider model.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Output text returned from the provider model with leading and trailing whitespaces stripped.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "The index for the sampled generation for a given input. The num_samples request parameter controls how many samples are generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.index", + "title": "index", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Unique ID for the model inputs and output logged to Humanloop. Use this when recording feedback later.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.body.data.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed", + "title": "Chat Deployed", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/chats/create-deployed#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-deployed#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + ], + "description": "Get chat response for a specific model configuration.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "NB: Deprecated with new tool_choice. Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'name': } forces the model to use the provided tool of the same name. + +NB: Deprecated with new tool_choice. Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'name': } forces the model to use the provided tool of the same name.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Deprecated field: the seed is instead set as part of the request.config object.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Whether to return the inputs in the response. If false, the response will contain an empty dictionary under inputs. This is useful for reducing the size of the response. Defaults to true.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.return_inputs", + "title": "return_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "The number of generations.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "API keys required by each provider to make API calls. The API keys provided here are not stored by Humanloop. If not specified here, Humanloop will fall back to the key saved to your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys.openai_azure_endpoint", + "title": "openai_azure_endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys.ai21", + "title": "ai21", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.provider_api_keys.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Unique ID of a project to associate to the log. Either this or \`project\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Unique project name. If no project exists with this name, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "Identifies the model configuration used to create a chat response.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#request", + "title": "Request", + }, + ], + "description": "If true, tokens will be sent as data-only server-sent events. If num_samples > 1, samples are streamed back independently.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#request.body.stream", + "title": "stream", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + ], + "description": "Overwrite GenerateResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "The number of chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses. + +Overwrite DataResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Deprecated: Please use tool_calls field within the output_message.JSON definition of the tool to call and the corresponding argument values. Will be populated when finish_reason='tool_call'. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Deprecated: Please use tool_calls field within the output_message.JSON definition of the tools to call and the corresponding argument values. Will be populated when finish_reason='tool_call'.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Results of any tools run during the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.tool_results", + "title": "tool_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Why the generation ended. One of 'stop' (indicating a stop token was encountered), or 'length' (indicating the max tokens limit has been reached), or 'tool_call' (indicating that the model has chosen to call a tool - in which case the tool_call parameter of the response will be populated). It will be set as null for the intermediary responses during a stream, and will only be set as non-null for the final streamed token.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "The inputs passed to the chat template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "The model configuration used to create the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Raw output text returned from the provider model.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Output text returned from the provider model with leading and trailing whitespaces stripped.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "The index for the sampled generation for a given input. The num_samples request parameter controls how many samples are generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.index", + "title": "index", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Unique ID for the model inputs and output logged to Humanloop. Use this when recording feedback later.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.body.data.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-config", + "title": "Chat Model Config", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/chats/create-config#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-config#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + ], + "description": "Overwrite GenerateResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "The number of chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses. + +Overwrite DataResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Deprecated: Please use tool_calls field within the output_message.JSON definition of the tool to call and the corresponding argument values. Will be populated when finish_reason='tool_call'. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Deprecated: Please use tool_calls field within the output_message.JSON definition of the tools to call and the corresponding argument values. Will be populated when finish_reason='tool_call'.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Results of any tools run during the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.tool_results", + "title": "tool_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Why the generation ended. One of 'stop' (indicating a stop token was encountered), or 'length' (indicating the max tokens limit has been reached), or 'tool_call' (indicating that the model has chosen to call a tool - in which case the tool_call parameter of the response will be populated). It will be set as null for the intermediary responses during a stream, and will only be set as non-null for the final streamed token.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "The inputs passed to the chat template.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "The model configuration used to create the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Raw output text returned from the provider model.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Output text returned from the provider model with leading and trailing whitespaces stripped.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "The index for the sampled generation for a given input. The num_samples request parameter controls how many samples are generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.index", + "title": "index", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Unique ID for the model inputs and output logged to Humanloop. Use this when recording feedback later.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment#response.body.data.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + ], + "description": "Overwrite GenerateResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The number of chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/chats/create", + "title": "Chats", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Array containing the chat responses. + +Overwrite DataResponse for chat.", + "endpointPath": [ + { + "type": "literal", + "value": "/chat-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/chats/create-experiment-stream#response.body.stream.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + ], + "description": "Create a completion by providing details of the model configuration in the request.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "Deprecated field: the seed is instead set as part of the request.config object.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "Whether to return the inputs in the response. If false, the response will contain an empty dictionary under inputs. This is useful for reducing the size of the response. Defaults to true.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.return_inputs", + "title": "return_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "The number of generations.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "API keys required by each provider to make API calls. The API keys provided here are not stored by Humanloop. If not specified here, Humanloop will fall back to the key saved to your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys", + "title": "provider_api_keys", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys.openai_azure_endpoint", + "title": "openai_azure_endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys.ai21", + "title": "ai21", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.provider_api_keys.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "Unique ID of a project to associate to the log. Either this or \`project\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "Unique project name. If no project exists with this name, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "The model configuration used to generate. + +Completion model config request", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.model_config.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#request", + "title": "Request", + }, + ], + "description": "If true, tokens will be sent as data-only server-sent events. If num_samples > 1, samples are streamed back independently.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#request.body.stream", + "title": "stream", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "How many completions to make for each set of inputs.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + }, + ], + "description": "Results of any tools run during the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data.tool_results", + "title": "tool_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + }, + ], + "description": "Why the generation ended. One of 'stop' (indicating a stop token was encountered), or 'length' (indicating the max tokens limit has been reached), or 'tool_call' (indicating that the model has chosen to call a tool - in which case the tool_call parameter of the response will be populated). It will be set as null for the intermediary responses during a stream, and will only be set as non-null for the final streamed token.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + }, + ], + "description": "The model configuration used to create the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + }, + ], + "description": "Raw output text returned from the provider model.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + }, + ], + "description": "Output text returned from the provider model with leading and trailing whitespaces stripped.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + }, + ], + "description": "The index for the sampled generation for a given input. The num_samples request parameter controls how many samples are generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data.index", + "title": "index", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.body.data", + "title": "data", + }, + ], + "description": "Unique ID for the model inputs and output logged to Humanloop. Use this when recording feedback later.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.body.data.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/completions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/completions/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + ], + "description": "Create a completion using the project's active deployment. + +The active deployment can be a specific model configuration.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "Deprecated field: the seed is instead set as part of the request.config object.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "The environment name used to create a chat response. If not specified, the default environment will be used.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "Whether to return the inputs in the response. If false, the response will contain an empty dictionary under inputs. This is useful for reducing the size of the response. Defaults to true.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.return_inputs", + "title": "return_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "The number of generations.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "API keys required by each provider to make API calls. The API keys provided here are not stored by Humanloop. If not specified here, Humanloop will fall back to the key saved to your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys.openai_azure_endpoint", + "title": "openai_azure_endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys.ai21", + "title": "ai21", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.provider_api_keys.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "Unique ID of a project to associate to the log. Either this or \`project\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "Unique project name. If no project exists with this name, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#request", + "title": "Request", + }, + ], + "description": "If true, tokens will be sent as data-only server-sent events. If num_samples > 1, samples are streamed back independently.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#request.body.stream", + "title": "stream", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "How many completions to make for each set of inputs.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Results of any tools run during the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data.tool_results", + "title": "tool_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Why the generation ended. One of 'stop' (indicating a stop token was encountered), or 'length' (indicating the max tokens limit has been reached), or 'tool_call' (indicating that the model has chosen to call a tool - in which case the tool_call parameter of the response will be populated). It will be set as null for the intermediary responses during a stream, and will only be set as non-null for the final streamed token.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "The model configuration used to create the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Raw output text returned from the provider model.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Output text returned from the provider model with leading and trailing whitespaces stripped.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "The index for the sampled generation for a given input. The num_samples request parameter controls how many samples are generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data.index", + "title": "index", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data", + "title": "data", + }, + ], + "description": "Unique ID for the model inputs and output logged to Humanloop. Use this when recording feedback later.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.body.data.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed", + "title": "Completion Deployed", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/completions/create-deployed#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-deployed", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-deployed#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + ], + "description": "Create a completion for a specific model configuration.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Deprecated field: the seed is instead set as part of the request.config object.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Whether to return the inputs in the response. If false, the response will contain an empty dictionary under inputs. This is useful for reducing the size of the response. Defaults to true.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.return_inputs", + "title": "return_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "The number of generations.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "API keys required by each provider to make API calls. The API keys provided here are not stored by Humanloop. If not specified here, Humanloop will fall back to the key saved to your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys.openai_azure_endpoint", + "title": "openai_azure_endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys.ai21", + "title": "ai21", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys", + "title": "provider_api_keys", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.provider_api_keys.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Unique ID of a project to associate to the log. Either this or \`project\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Unique project name. If no project exists with this name, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "Identifies the model configuration used to create a chat response.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#request", + "title": "Request", + }, + ], + "description": "If true, tokens will be sent as data-only server-sent events. If num_samples > 1, samples are streamed back independently.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#request.body.stream", + "title": "stream", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "How many completions to make for each set of inputs.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Results of any tools run during the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data.tool_results", + "title": "tool_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Why the generation ended. One of 'stop' (indicating a stop token was encountered), or 'length' (indicating the max tokens limit has been reached), or 'tool_call' (indicating that the model has chosen to call a tool - in which case the tool_call parameter of the response will be populated). It will be set as null for the intermediary responses during a stream, and will only be set as non-null for the final streamed token.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + }, + ], + "description": "The model configuration used to create the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Raw output text returned from the provider model.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Output text returned from the provider model with leading and trailing whitespaces stripped.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + }, + ], + "description": "The index for the sampled generation for a given input. The num_samples request parameter controls how many samples are generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data.index", + "title": "index", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.body.data", + "title": "data", + }, + ], + "description": "Unique ID for the model inputs and output logged to Humanloop. Use this when recording feedback later.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.body.data.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-config", + "title": "Completion Model Config", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/completions/create-config#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-model-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-config#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "How many completions to make for each set of inputs.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Results of any tools run during the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data.tool_results", + "title": "tool_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Why the generation ended. One of 'stop' (indicating a stop token was encountered), or 'length' (indicating the max tokens limit has been reached), or 'tool_call' (indicating that the model has chosen to call a tool - in which case the tool_call parameter of the response will be populated). It will be set as null for the intermediary responses during a stream, and will only be set as non-null for the final streamed token.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "The model configuration used to create the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Raw output text returned from the provider model.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Output text returned from the provider model with leading and trailing whitespaces stripped.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "The index for the sampled generation for a given input. The num_samples request parameter controls how many samples are generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data.index", + "title": "index", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment", + "title": "Create Experiment", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data", + "title": "data", + }, + ], + "description": "Unique ID for the model inputs and output logged to Humanloop. Use this when recording feedback later.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment#response.body.data.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "ID of the session if it belongs to one.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The raw request sent to the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Counts of the number of tokens used and related stats.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.usage", + "title": "usage", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.usage", + "title": "usage", + }, + ], + "description": "Total number of tokens used by the prompt and generation combined.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.usage.total_tokens", + "title": "total_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.usage", + "title": "usage", + }, + ], + "description": "Number of tokens produced by the generation.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.usage.generation_tokens", + "title": "generation_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.usage", + "title": "usage", + }, + ], + "description": "Number of tokens used in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.usage.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "End-user ID passed through to provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The suffix that comes after a completion of inserted text. Useful for completions that act like inserts.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.suffix", + "title": "suffix", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Include the log probabilities of the top n tokens in the provider_response", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.logprobs", + "title": "logprobs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "How many completions to make for each set of inputs.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.num_samples", + "title": "num_samples", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Unique identifier of the parent project. Will not be provided if the request was made without providing a project name or id", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "The raw responses returned by the model provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.provider_responses", + "title": "provider_responses", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/completions/create", + "title": "Completions", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream", + "title": "Create Experiment Stream", + }, + { + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response", + "title": "Response", + }, + ], + "description": "Array containing the generation responses.", + "endpointPath": [ + { + "type": "literal", + "value": "/completion-experiment", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": true, + "method": "POST", + "slug": "docs/v4/api-reference/completions/create-experiment-stream#response.body.stream.data", + "title": "data", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + ], + "description": "Get a datapoint by ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.dataset_id", + "title": "dataset_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datapoints/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datapoints/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + ], + "description": "Edit the input, messages and criteria fields of a datapoint. + +WARNING: This endpoint has been decommissioned and no longer works. Please use the v5 datasets API instead.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.dataset_id", + "title": "dataset_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datapoints/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datapoints/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + ], + "description": "Delete a list of datapoints by their IDs. + +WARNING: This endpoint has been decommissioned and no longer works. Please use the v5 datasets API instead.", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/datapoints/delete", + "title": "Delete", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/datapoints/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/datapoints/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/datapoints/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datapoints/get", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datapoints/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/datapoints/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": "Get all datasets for a project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#request.path.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#request.path.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + ], + "description": "Datasets are now files and do not belong to projects. If this dataset was created before that change, the legacy project ID will be provided here, otherwise an empty string will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.body.datapoint_count", + "title": "datapoint_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "List For Project", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-datasets#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": "Get a paginated list of files.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page offset for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of projects to fetch.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.filter", + "title": "filter", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.filter", + "title": "filter", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Case-insensitive filter for users in the project. This filter matches against both email address and name of users.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.user_filter", + "title": "user_filter", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Field to sort projects by", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.sort_by", + "title": "sort_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.sort_by.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.sort_by.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query.sort_by", + "title": "sort_by", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.sort_by.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Direction to sort by.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.order", + "title": "order", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.order.asc", + "title": "asc", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query", + "title": "Query Parameters", + }, + { + "slug": "docs/v4/api-reference/projects/list#request.query.order", + "title": "order", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#request.query.order.desc", + "title": "desc", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "String ID of the directory the project belongs to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type", + "title": "config_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type.generic", + "title": "generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type.agent", + "title": "agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.config_type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "Config that has been set as the project's active deployment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.active_config", + "title": "active_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique ID of the team the project belongs to. Starts with \`tm_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.team_id", + "title": "team_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "The count of datapoints that have been logged to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.data_count", + "title": "data_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.body.records", + "title": "records", + }, + ], + "description": "Project ID", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/projects/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": "Create a new project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#request", + "title": "Request", + }, + ], + "description": "ID of directory to assign project to. Starts with \`dir_\`. If not provided, the project will be created in the root directory.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#request.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#request", + "title": "Request", + }, + ], + "description": "Unique project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "String ID of the directory the project belongs to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "Unique ID for the evaluator. Starts with \`evfn_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The type of the evaluator. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.type.python", + "title": "python", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.type.llm", + "title": "llm", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.type.human", + "title": "human", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.type.external", + "title": "external", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_evaluators.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.config_type", + "title": "config_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.config_type.generic", + "title": "generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.config_type.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.config_type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.config_type.agent", + "title": "agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.config_type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "Config that has been set as the project's active deployment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Number of datapoints associated with this project model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.last_used", + "title": "last_used", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.active_config", + "title": "active_config", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.active_config.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "Unique ID of the team the project belongs to. Starts with \`tm_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.team_id", + "title": "team_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.feedback_types", + "title": "feedback_types", + }, + ], + "description": "The allowed values for categorical feedback types. Not populated for \`correction\` and \`comment\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.feedback_types.values", + "title": "values", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.feedback_types", + "title": "feedback_types", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.feedback_types.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "The count of datapoints that have been logged to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.data_count", + "title": "data_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.users", + "title": "users", + }, + ], + "description": "The user's full name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.users.full_name", + "title": "full_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.users", + "title": "users", + }, + ], + "description": "The user's email address.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.users.email_address", + "title": "email_address", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.body.users", + "title": "users", + }, + ], + "description": "String ID of user. Starts with \`usr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.users.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "Unique project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + ], + "description": "Project ID", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/projects/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": "Get a specific project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "String ID of the directory the project belongs to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "Unique ID for the evaluator. Starts with \`evfn_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The type of the evaluator. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.type.python", + "title": "python", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.type.llm", + "title": "llm", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.type.human", + "title": "human", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.type.external", + "title": "external", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_evaluators.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.config_type", + "title": "config_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.config_type.generic", + "title": "generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.config_type.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.config_type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.config_type.agent", + "title": "agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.config_type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "Config that has been set as the project's active deployment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Number of datapoints associated with this project model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.last_used", + "title": "last_used", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.active_config", + "title": "active_config", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.active_config.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "Unique ID of the team the project belongs to. Starts with \`tm_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.team_id", + "title": "team_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.feedback_types", + "title": "feedback_types", + }, + ], + "description": "The allowed values for categorical feedback types. Not populated for \`correction\` and \`comment\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.feedback_types.values", + "title": "values", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.feedback_types", + "title": "feedback_types", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.feedback_types.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "The count of datapoints that have been logged to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.data_count", + "title": "data_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.users", + "title": "users", + }, + ], + "description": "The user's full name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.users.full_name", + "title": "full_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.users", + "title": "users", + }, + ], + "description": "The user's email address.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.users.email_address", + "title": "email_address", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.body.users", + "title": "users", + }, + ], + "description": "String ID of user. Starts with \`usr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.users.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "Unique project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + ], + "description": "Project ID", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/projects/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": "Delete a specific file.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/delete", + "title": "Delete", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/projects/delete#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/projects/delete#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/delete#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/delete", + "title": "Delete", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": "Update a specific project. + +Set the project's active model config by passing \`active_model_config_id\`. +These will be set to the Default environment unless a list of environments +are also passed in specifically detailing which environments to assign the +active config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/update#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#request", + "title": "Request", + }, + ], + "description": "ID of directory to assign project to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#request.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#request", + "title": "Request", + }, + ], + "description": "ID for a config to set as the project's active deployment. Starts with 'config_'. ", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#request.body.active_config_id", + "title": "active_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#request", + "title": "Request", + }, + ], + "description": "The new unique project name. Caution, if you are using the project name as the unique identifier in your API calls, changing the name will break the calls.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "String ID of the directory the project belongs to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "Unique ID for the evaluator. Starts with \`evfn_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The type of the evaluator. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.type.python", + "title": "python", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.type.llm", + "title": "llm", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.type.human", + "title": "human", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.type.external", + "title": "external", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_evaluators.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.config_type", + "title": "config_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.config_type.generic", + "title": "generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.config_type.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.config_type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.config_type.agent", + "title": "agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.config_type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "Config that has been set as the project's active deployment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Number of datapoints associated with this project model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.last_used", + "title": "last_used", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.active_config", + "title": "active_config", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.active_config.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "Unique ID of the team the project belongs to. Starts with \`tm_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.team_id", + "title": "team_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.feedback_types", + "title": "feedback_types", + }, + ], + "description": "The allowed values for categorical feedback types. Not populated for \`correction\` and \`comment\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.feedback_types.values", + "title": "values", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.feedback_types", + "title": "feedback_types", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.feedback_types.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "The count of datapoints that have been logged to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.data_count", + "title": "data_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.users", + "title": "users", + }, + ], + "description": "The user's full name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.users.full_name", + "title": "full_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.users", + "title": "users", + }, + ], + "description": "The user's email address.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.users.email_address", + "title": "email_address", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.body.users", + "title": "users", + }, + ], + "description": "String ID of user. Starts with \`usr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.users.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "Unique project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + ], + "description": "Project ID", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/projects/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": "Get an array of versions associated to your file.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#request.query.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#request.query.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + ], + "description": "Number of datapoints associated with this project model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.last_used", + "title": "last_used", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs", + "title": "List Configs", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/list-configs#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/list-configs#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + ], + "description": "The feedback values to be available. This field should only be populated when updating a 'select' or 'multi_select' feedback class.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values", + "title": "values", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + ], + "description": "The feedback values to be available. This field should only be populated when updating a 'select' or 'multi_select' feedback class.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values", + "title": "values", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values", + "title": "values", + }, + ], + "description": "How a label should be treated in calculating Version performance. + +Used by a File's PAPV (Positive Action Per View) metric.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.sentiment", + "title": "sentiment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values", + "title": "values", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.sentiment", + "title": "sentiment", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.sentiment.positive", + "title": "positive", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values", + "title": "values", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.sentiment", + "title": "sentiment", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.sentiment.negative", + "title": "negative", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values", + "title": "values", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.sentiment", + "title": "sentiment", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.sentiment.neutral", + "title": "neutral", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values", + "title": "values", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.sentiment", + "title": "sentiment", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.sentiment.unset", + "title": "unset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values", + "title": "values", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.values.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + ], + "description": "The data type associated to this feedback type; whether it is a 'text'/'select'/'multi_select'. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.class", + "title": "class", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.class", + "title": "class", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.class.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.class", + "title": "class", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.class.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.class", + "title": "class", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.class.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.class", + "title": "class", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.class.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#request", + "title": "Request", + }, + ], + "description": "The type of feedback to update.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#request.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + ], + "description": "The allowed values for categorical feedback types. Not populated for \`correction\` and \`comment\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values", + "title": "values", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + ], + "description": "The allowed values for categorical feedback types. Not populated for \`correction\` and \`comment\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values", + "title": "values", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values", + "title": "values", + }, + ], + "description": "Whether the feedback sentiment is positive or negative. + +How a label should be treated in calculating Version performance. + +Used by a File's PAPV (Positive Action Per View) metric.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.sentiment", + "title": "sentiment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values", + "title": "values", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.sentiment", + "title": "sentiment", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.sentiment.positive", + "title": "positive", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values", + "title": "values", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.sentiment", + "title": "sentiment", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.sentiment.negative", + "title": "negative", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values", + "title": "values", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.sentiment", + "title": "sentiment", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.sentiment.neutral", + "title": "neutral", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values", + "title": "values", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.sentiment", + "title": "sentiment", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.sentiment.unset", + "title": "unset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values", + "title": "values", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.values.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type", + "title": "type", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Type", + "title": "Feedback Type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Typerating", + "title": "rating", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Typeaction", + "title": "action", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Typeissue", + "title": "issue", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Typecorrection", + "title": "correction", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.body.type.Feedback%20Typecomment", + "title": "comment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type", + "title": "Create Feedback Type", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/create-feedback-type#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": "Update feedback types. + +WARNING: This endpoint has been decommissioned and no longer works. Please use the v5 Human Evaluators API instead.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update-feedback-types", + "title": "Update Feedback Types", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types", + "title": "Update Feedback Types", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update-feedback-types#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types", + "title": "Update Feedback Types", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update-feedback-types#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types", + "title": "Update Feedback Types", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update-feedback-types#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types", + "title": "Update Feedback Types", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types", + "title": "Update Feedback Types", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types", + "title": "Update Feedback Types", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types", + "title": "Update Feedback Types", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/feedback-types", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/update-feedback-types#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + ], + "description": "Export all logged datapoints associated to your project. + +Results are paginated and sorts the datapoints based on \`created_at\` in +descending order.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/export#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page offset for pagination.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/export#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/export#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page size for pagination. Number of logs to export.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/export#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/export#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/export#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + ], + "description": "Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Raw output from the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Total number of tokens in the prompt and output.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.tokens", + "title": "tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Latency of provider response.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "User email address provided when creating the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "The environment name used to create the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Unique ID of a config to associate to the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.config_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if logging a parent datapoint with the intention to populate it later", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Unique user-provided string identifying the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "The unique ID of the project associated with this log.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "The name of the project associated with this log", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "Status of a Log for observability. + +Observability is implemented by running monitoring Evaluators on Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.observability_status", + "title": "observability_status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.observability_status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.observability_status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.observability_status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.observability_status.failed", + "title": "failed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.body.records", + "title": "records", + }, + ], + "description": "String ID of logged datapoint. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/export", + "title": "Export", + }, + { + "slug": "docs/v4/api-reference/projects/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/export#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/projects/export#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + ], + "description": "Retrieves a config to use to execute your model. + +A config will be selected based on the project's +active config settings.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name for the environment. E.g. 'production'. If not provided, will return the active config for the default environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + ], + "description": "A selected model configuration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": "ID of environment to reference in subsequent log calls.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates.aggregate_value", + "title": "aggregate_value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.evaluation_aggregates.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": "Number of datapoints associated with this project model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Generic.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Tools associated with the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Model config associated with the agent. + +Model config used for logging both chat and completion.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Class of the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Agent.agent_class", + "title": "agent_class", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Type of evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Evaluator.evaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Code source of the tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Source of the tool. If defined at an organization level will be 'organization' else 'inline'. + +Source of tool. Used to differentiate between tools and tool versions when they are combined in a list. + +V4 uses organization and inline. Those are deprecated and will be removed in favour of tool and tool_version.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.source.organization", + "title": "organization", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.source.inline", + "title": "inline", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The function signature of the tool when being called.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.setup_schema", + "title": "setup_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "If is_preset = true, this is the name of the preset tool on Humanloop. This is used as the key to lookup the Humanloop runtime of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.preset_name", + "title": "preset_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the tool is one where Humanloop defines runtime or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.is_preset", + "title": "is_preset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Tool.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.config.Model.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.last_used", + "title": "last_used", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Get Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/active-config/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + ], + "description": "Remove the project's active config, if set. + +This has no effect if the project does not have an active model config set.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request.query", + "title": "Query Parameters", + }, + ], + "description": "Name for the environment. E.g. 'production'. If not provided, will delete the active config for the default environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request.query.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "String ID of the directory the project belongs to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "Unique ID for the evaluator. Starts with \`evfn_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The type of the evaluator. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.type.python", + "title": "python", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.type.llm", + "title": "llm", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.type.human", + "title": "human", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.type.external", + "title": "external", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators", + "title": "active_evaluators", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_evaluators.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type", + "title": "config_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type.generic", + "title": "generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type.agent", + "title": "agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.config_type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "Config that has been set as the project's active deployment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Number of datapoints associated with this project model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.last_used", + "title": "last_used", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config", + "title": "active_config", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.active_config.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "Unique ID of the team the project belongs to. Starts with \`tm_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.team_id", + "title": "team_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.feedback_types", + "title": "feedback_types", + }, + ], + "description": "The allowed values for categorical feedback types. Not populated for \`correction\` and \`comment\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.feedback_types.values", + "title": "values", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.feedback_types", + "title": "feedback_types", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.feedback_types.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "The count of datapoints that have been logged to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.data_count", + "title": "data_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.users", + "title": "users", + }, + ], + "description": "The user's full name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.users.full_name", + "title": "full_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.users", + "title": "users", + }, + ], + "description": "The user's email address.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.users.email_address", + "title": "email_address", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.users", + "title": "users", + }, + ], + "description": "String ID of user. Starts with \`usr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.users.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "Unique project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + ], + "description": "Project ID", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/get", + "title": "Active Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate", + "title": "Deactivate Config", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/active-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/active-config/deactivate#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + ], + "description": "Get an array of environments with the deployed configs associated to your project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + ], + "description": "A friendly display name for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.body.model_config_name", + "title": "model_config_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + ], + "description": "Model config unique identifier generated by Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.body.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + ], + "description": "Tag for the environment e.g. 'default' or 'other'.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.body.environment_tag", + "title": "environment_tag", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + ], + "description": "The name of the environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.body.environment_name", + "title": "environment_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + ], + "description": "The ID of the environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.body.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.body.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "List Deployed Configs", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/deployed-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/projects/deployed-config/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + ], + "description": "Deploy a model config to an environment. + +If the environment already has a model config deployed, it will be replaced.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.path.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.path.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request", + "title": "Request", + }, + ], + "description": "List of environments to associate with the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request", + "title": "Request", + }, + ], + "description": "List of environments to associate with the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.body.environments", + "title": "environments", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.body.environments", + "title": "environments", + }, + ], + "description": "The environment name.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.body.environments.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.body.environments", + "title": "environments", + }, + ], + "description": "String ID of the environment. Starts with \`env_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.body.environments.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request", + "title": "Request", + }, + ], + "description": "Model config unique identifier generated by Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#request.body.config_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + ], + "description": "A friendly display name for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.body.model_config_name", + "title": "model_config_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + ], + "description": "Model config unique identifier generated by Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.body.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + ], + "description": "Tag for the environment e.g. 'default' or 'other'.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.body.environment_tag", + "title": "environment_tag", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + ], + "description": "The name of the environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.body.environment_name", + "title": "environment_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + ], + "description": "The ID of the environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.body.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.body.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy", + "title": "Deploy Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deploy-config", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/projects/deployed-config/deploy#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + ], + "description": "Remove the version deployed to environment. + +This has no effect if the project does not have an active version set.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request.path.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request.path.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete#request.path.environment_id", + "title": "environment_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/projects/list-datasets", + "title": "Projects", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/list", + "title": "Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete", + "title": "Delete Deployed Config", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/deployed-config/", + }, + { + "type": "pathParameter", + "value": "environment_id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "DELETE", + "slug": "docs/v4/api-reference/projects/deployed-config/delete#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + ], + "description": "Create a new dataset for a project.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#request.path.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#request.path.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#request", + "title": "Request", + }, + ], + "description": "The description of the dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#request.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#request", + "title": "Request", + }, + ], + "description": "The name of the dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + ], + "description": "Datasets are now files and do not belong to projects. If this dataset was created before that change, the legacy project ID will be provided here, otherwise an empty string will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.body.datapoint_count", + "title": "datapoint_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datasets/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/projects/", + }, + { + "type": "pathParameter", + "value": "project_id", + }, + { + "type": "literal", + "value": "/datasets", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + ], + "description": "Update a testset by ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/update#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of testset. Starts with \`evts_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#request", + "title": "Request", + }, + ], + "description": "The description of the dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#request.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#request", + "title": "Request", + }, + ], + "description": "The name of the dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + ], + "description": "Datasets are now files and do not belong to projects. If this dataset was created before that change, the legacy project ID will be provided here, otherwise an empty string will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.body.datapoint_count", + "title": "datapoint_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datasets/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/datasets/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + ], + "description": "Get datapoints for a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of dataset. Starts with \`evts_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.path.dataset_id", + "title": "dataset_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#request.path.dataset_id", + "title": "dataset_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records.dataset_id", + "title": "dataset_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints", + "title": "Datapoints", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/datasets/list-datapoints#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + ], + "description": "Create a new datapoint for a dataset. + +Here in the v4 API, this has the following behaviour: + +- Retrieve the current latest version of the dataset. +- Construct a new version of the dataset with the new testcases added. +- Store that latest version as a committed version with an autogenerated commit + message and return the new datapoints", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of dataset. Starts with \`evts_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.path.dataset_id", + "title": "dataset_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.path.dataset_id", + "title": "dataset_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + ], + "description": "Object with criteria necessary to evaluate this datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.2target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + ], + "description": "The chat messages for this datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.2messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + ], + "description": "The inputs to the prompt template for this datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.2inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Request", + "title": "Create Datapoint Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Request", + "title": "Create Datapoint Request", + }, + ], + "description": "Object with criteria necessary to evaluate this datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Requesttarget", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Request", + "title": "Create Datapoint Request", + }, + ], + "description": "Object with criteria necessary to evaluate this datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Requesttarget", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Request", + "title": "Create Datapoint Request", + }, + ], + "description": "The chat messages for this datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Requestmessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Request", + "title": "Create Datapoint Request", + }, + ], + "description": "The chat messages for this datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Requestmessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Request", + "title": "Create Datapoint Request", + }, + ], + "description": "The inputs to the prompt template for this datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Requestinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Request", + "title": "Create Datapoint Request", + }, + ], + "description": "The inputs to the prompt template for this datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoint%20Requestinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoints%20by%20Logs%20Request", + "title": "Create Datapoints by Logs Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoints%20by%20Logs%20Request", + "title": "Create Datapoints by Logs Request", + }, + ], + "description": "The IDs of the logs to create datapoints from.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoints%20by%20Logs%20Requestlog_ids", + "title": "log_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoints%20by%20Logs%20Request", + "title": "Create Datapoints by Logs Request", + }, + ], + "description": "The IDs of the logs to create datapoints from.", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#request.body.Create%20Datapoints%20by%20Logs%20Requestlog_ids", + "title": "log_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.body.target", + "title": "target", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.body.dataset_id", + "title": "dataset_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/datasets/create", + "title": "Datasets", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint", + "title": "Create Datapoint", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/datasets/", + }, + { + "type": "pathParameter", + "value": "dataset_id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/datasets/create-datapoint#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + ], + "description": "Get testcases by evaluation ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page to fetch. Starts from 1.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": "Number of evaluation results to retrieve.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": "String ID of evaluatee version to return. If not defined, the first evaluatee will be returned. Starts with \`evv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query.evaluatee_id", + "title": "evaluatee_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.query.evaluatee_id", + "title": "evaluatee_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of evaluation. Starts with \`ev_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": "Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.records.log", + "title": "log", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.records.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.body.records.datapoint", + "title": "datapoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints", + "title": "List Datapoints", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/datapoints", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list-datapoints#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + ], + "description": "Log an external generation to an evaluation run for a datapoint. + +The run must have status 'running'.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.query", + "title": "Query Parameters", + }, + ], + "description": "String ID of evaluatee version to return. If not defined, the first evaluatee will be returned. Starts with \`evv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.query.evaluatee_id", + "title": "evaluatee_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.query.evaluatee_id", + "title": "evaluatee_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.path", + "title": "Path Parameters", + }, + ], + "description": "ID of the evaluation run. Starts with \`evrun_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.path.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.path.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + ], + "description": "The log generated for the datapoint. + +Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Optional parameter to provide feedback with your logged datapoint. + +Optional parameter to provide feedback with your logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.feedback", + "title": "feedback", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.feedback.Feedback", + "title": "Feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "The environment name used to create the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "The model config used for this generation. Required unless \`config_id\` is provided. + +The model config used for this generation. Required unless \`config_id\` is provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.config", + "title": "config", + }, + ], + "description": "Definition of tool within a model config. + +The subset of ToolConfig parameters received by the chat endpoint. +Does not have things like the signature or setup schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.config", + "title": "config", + }, + ], + "description": "Model config used for logging both chat and completion.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Unique ID of a config to associate to the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.config_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if logging a parent datapoint with the intention to populate it later", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "A unique string to reference the datapoint. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a subsequent log request.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Unique ID of a project to associate to the log. Either this or \`project\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request.body.log", + "title": "log", + }, + ], + "description": "Unique project name. If no project exists with this name, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.log.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#request", + "title": "Request", + }, + ], + "description": "The datapoint for which a log was generated. Must be one of the datapoints in the dataset being evaluated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#request.body.datapoint_id", + "title": "datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response", + "title": "Response", + }, + ], + "description": "String ID of session the datapoint belongs to. Populated only if the datapoint was logged with \`session_id\` or \`session_reference_id\`, and is \`None\` otherwise. Starts with \`sesh_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response", + "title": "Response", + }, + ], + "description": "String ID of project the datapoint belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response", + "title": "Response", + }, + ], + "description": "String ID of logged datapoint. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/log", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + ], + "description": "Log an evaluation result to an evaluation run. + +The run must have status 'running'. One of \`result\` or \`error\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request.query", + "title": "Query Parameters", + }, + ], + "description": "String ID of evaluatee version to return. If not defined, the first evaluatee will be returned. Starts with \`evv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.query.evaluatee_id", + "title": "evaluatee_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.query.evaluatee_id", + "title": "evaluatee_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request.path", + "title": "Path Parameters", + }, + ], + "description": "ID of the evaluation run. Starts with \`evrun_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.path.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.path.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + ], + "description": "An error that occurred during evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + ], + "description": "The result value of the evaluation. + +The result value of the evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.body.result", + "title": "result", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.body.result", + "title": "result", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.body.result", + "title": "result", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.body.result", + "title": "result", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + ], + "description": "ID of the evaluator that evaluated the log. Starts with \`evfn_\`. Must be one of the evaluator IDs associated with the evaluation run being logged to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.body.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#request", + "title": "Request", + }, + ], + "description": "The log that was evaluated. Must have as its \`source_datapoint_id\` one of the datapoints in the dataset being evaluated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#request.body.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": "Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "A result from a tool used to populate the prompt template", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Raw output from the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Total number of tokens in the prompt and output.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.tokens", + "title": "tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Latency of provider response.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "User email address provided when creating the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "The environment name used to create the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Unique ID of a config to associate to the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if logging a parent datapoint with the intention to populate it later", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Unique user-provided string identifying the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "The unique ID of the project associated with this log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "The name of the project associated with this log", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "Status of a Log for observability. + +Observability is implemented by running monitoring Evaluators on Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.observability_status", + "title": "observability_status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.observability_status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.observability_status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.observability_status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.observability_status.failed", + "title": "failed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log", + "title": "evaluator_log", + }, + ], + "description": "String ID of logged datapoint. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_log.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": "Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "A result from a tool used to populate the prompt template", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Raw output from the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Total number of tokens in the prompt and output.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.tokens", + "title": "tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Latency of provider response.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "User email address provided when creating the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "The environment name used to create the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Unique ID of a config to associate to the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if logging a parent datapoint with the intention to populate it later", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Unique user-provided string identifying the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "The unique ID of the project associated with this log.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "The name of the project associated with this log", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "Status of a Log for observability. + +Observability is implemented by running monitoring Evaluators on Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.observability_status", + "title": "observability_status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.observability_status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.observability_status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.observability_status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.observability_status.failed", + "title": "failed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.body.log", + "title": "log", + }, + ], + "description": "String ID of logged datapoint. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/result", + "title": "Result", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/result#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "evaluation_id", + }, + { + "type": "literal", + "value": "/result", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluations/result#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + ], + "description": "Add evaluators to an existing evaluation run.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of evaluation run. Starts with \`ev_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request", + "title": "Request", + }, + ], + "description": "IDs of the evaluator versions to add to the evaluation run. IDs start with \`evv_\`", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request.body.evaluator_version_ids", + "title": "evaluator_version_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request", + "title": "Request", + }, + ], + "description": "IDs of the evaluator versions to add to the evaluation run. IDs start with \`evv_\`", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request.body.evaluator_version_ids", + "title": "evaluator_version_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request", + "title": "Request", + }, + ], + "description": "IDs of evaluators to add to the evaluation run. IDs start with \`evfn_\`", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request.body.evaluator_ids", + "title": "evaluator_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request", + "title": "Request", + }, + ], + "description": "IDs of evaluators to add to the evaluation run. IDs start with \`evfn_\`", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#request.body.evaluator_ids", + "title": "evaluator_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates.aggregate_value", + "title": "aggregate_value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates", + "title": "evaluator_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluator_aggregates.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot", + "title": "dataset_snapshot", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot", + "title": "dataset_snapshot", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot", + "title": "dataset_snapshot", + }, + ], + "description": "Datasets are now files and do not belong to projects. If this dataset was created before that change, the legacy project ID will be provided here, otherwise an empty string will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot", + "title": "dataset_snapshot", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot", + "title": "dataset_snapshot", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot", + "title": "dataset_snapshot", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot.datapoint_count", + "title": "datapoint_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot", + "title": "dataset_snapshot", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot", + "title": "dataset_snapshot", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_snapshot.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset_version_id", + "title": "dataset_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset", + "title": "dataset", + }, + ], + "description": "Datasets are now files and do not belong to projects. If this dataset was created before that change, the legacy project ID will be provided here, otherwise an empty string will be returned.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset.datapoint_count", + "title": "datapoint_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset", + "title": "dataset", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.dataset.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The project where the evaluator logs are stored.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.logging_project", + "title": "logging_project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Unique ID for the evaluator. Starts with \`evfn_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The type of the evaluator. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.type.python", + "title": "python", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.type.llm", + "title": "llm", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.type.human", + "title": "human", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.type.external", + "title": "external", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators", + "title": "evaluators", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.evaluators.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Generic.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Tools associated with the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Model config associated with the agent. + +Model config used for logging both chat and completion.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Class of the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Agent.agent_class", + "title": "agent_class", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Type of evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Evaluator.evaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Code source of the tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Source of the tool. If defined at an organization level will be 'organization' else 'inline'. + +Source of tool. Used to differentiate between tools and tool versions when they are combined in a list. + +V4 uses organization and inline. Those are deprecated and will be removed in favour of tool and tool_version.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.source.organization", + "title": "organization", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.source.inline", + "title": "inline", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The function signature of the tool when being called.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.setup_schema", + "title": "setup_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "If is_preset = true, this is the name of the preset tool on Humanloop. This is used as the key to lookup the Humanloop runtime of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.preset_name", + "title": "preset_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the tool is one where Humanloop defines runtime or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.is_preset", + "title": "is_preset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Tool.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model", + "title": "Model", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.config.Model.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": "Status of an evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.status.cancelled", + "title": "cancelled", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + ], + "description": "Unique ID for the evaluation. Starts with \`ev_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators", + "title": "Add Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluations/add-evaluators#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + ], + "description": "Get the evaluations associated with a project. + +Sorting and filtering are supported through query params for categorical columns +and the \`created_at\` timestamp. + +Sorting is supported for the \`dataset\`, \`config\`, \`status\` and \`evaluator-{evaluator_id}\` columns. +Specify sorting with the \`sort\` query param, with values \`{column}.{ordering}\`. +E.g. ?sort=dataset.asc&sort=status.desc will yield a multi-column sort. First by dataset then by status. + +Filtering is supported for the \`id\`, \`dataset\`, \`config\` and \`status\` columns. + +Specify filtering with the \`id_filter\`, \`dataset_filter\`, \`config_filter\` and \`status_filter\` query params. + +E.g. ?dataset_filter=my_dataset&dataset_filter=my_other_dataset&status_filter=running +will only show rows where the dataset is "my_dataset" or "my_other_dataset", and where the status is "running". + +An additional date range filter is supported for the \`created_at\` column. Use the \`start_date\` and \`end_date\` +query parameters to configure this.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "String ID of project. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "A list of evaluation run ids to filter on. Starts with \`ev_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Only return evaluations created after this date.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.start_date", + "title": "start_date", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.start_date", + "title": "start_date", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Only return evaluations created before this date.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.end_date", + "title": "end_date", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.end_date", + "title": "end_date", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "String ID of evaluatee version to return. If not defined, the first evaluatee will be returned. Starts with \`evv_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.evaluatee_id", + "title": "evaluatee_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#request.query.evaluatee_id", + "title": "evaluatee_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.evaluator_aggregates", + "title": "evaluator_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.dataset_snapshot", + "title": "dataset_snapshot", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.dataset_version_id", + "title": "dataset_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.evaluators", + "title": "evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "Status of an evaluation.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.status", + "title": "status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.status.cancelled", + "title": "cancelled", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique ID for the evaluation. Starts with \`ev_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluations/get", + "title": "Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list", + "title": "Get Evaluations", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluations/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluations", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluations/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Get all evaluators within your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "The project where the evaluator logs are stored.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "String ID of the directory the project belongs to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type", + "title": "config_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type.generic", + "title": "generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type.agent", + "title": "agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.config_type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Config that has been set as the project's active deployment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.active_config", + "title": "active_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Unique ID of the team the project belongs to. Starts with \`tm_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.team_id", + "title": "team_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "The count of datapoints that have been logged to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.data_count", + "title": "data_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Unique project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Project ID", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.logging_project.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config", + "title": "model_config", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.model_config.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "Unique ID for the evaluator. Starts with \`evfn_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "The type of the evaluator. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.type.python", + "title": "python", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.type.llm", + "title": "llm", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.type.human", + "title": "human", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.type.external", + "title": "external", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "List", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluators/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/evaluators/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Create an evaluator within your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + ], + "description": "The model configuration used to generate. + +Completion model config request", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.model_config.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + ], + "description": "The type of the evaluator. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.type.python", + "title": "python", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.type.llm", + "title": "llm", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.type.human", + "title": "human", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.type.external", + "title": "external", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#request", + "title": "Request", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": "The project where the evaluator logs are stored.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "String ID of the directory the project belongs to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type", + "title": "config_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type.generic", + "title": "generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type.agent", + "title": "agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.config_type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Config that has been set as the project's active deployment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config", + "title": "active_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": "Number of datapoints associated with this project model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config.last_used", + "title": "last_used", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.active_config.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Unique ID of the team the project belongs to. Starts with \`tm_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.team_id", + "title": "team_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "The count of datapoints that have been logged to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.data_count", + "title": "data_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Unique project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Project ID", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.logging_project.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config", + "title": "model_config", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.model_config.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": "Unique ID for the evaluator. Starts with \`evfn_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": "The type of the evaluator. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.type.python", + "title": "python", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.type.llm", + "title": "llm", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.type.human", + "title": "human", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.type.external", + "title": "external", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluators/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/evaluators/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + ], + "description": "Update an evaluator within your organization.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + ], + "description": "The model configuration used to generate. + +Completion model config request", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config", + "title": "model_config", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.model_config.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#request", + "title": "Request", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": "The project where the evaluator logs are stored.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "String ID of the directory the project belongs to. Starts with \`dir_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.directory_id", + "title": "directory_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Evaluators that have been set as active for the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_evaluators", + "title": "active_evaluators", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type", + "title": "config_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type.generic", + "title": "generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type.agent", + "title": "agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type", + "title": "config_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.config_type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Config that has been set as the project's active deployment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config", + "title": "active_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": "Number of datapoints associated with this project model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config.last_used", + "title": "last_used", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config", + "title": "active_config", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.active_config.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Unique ID of the team the project belongs to. Starts with \`tm_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.team_id", + "title": "team_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "The feedback types that have been defined in the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.feedback_types", + "title": "feedback_types", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "The count of datapoints that have been logged to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.data_count", + "title": "data_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Users associated to the project.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.users", + "title": "users", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Unique project name.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project", + "title": "logging_project", + }, + ], + "description": "Project ID", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.logging_project.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config", + "title": "model_config", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.model_config.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": "Unique ID for the evaluator. Starts with \`evfn_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": "The type of the evaluator. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.type.python", + "title": "python", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.type.llm", + "title": "llm", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.type.human", + "title": "human", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.type.external", + "title": "external", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.body.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": "The description of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + ], + "description": "The name of the evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/evaluators/list", + "title": "Evaluators", + }, + { + "slug": "docs/v4/api-reference/evaluators/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/evaluators/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/evaluators/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/evaluators/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + ], + "description": "Submit an array of feedback for existing \`data_ids\`", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": "If true, the value for this feedback is unset.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requestunset", + "title": "unset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": "User defined timestamp for when the feedback was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requestcreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": "A unique identifier to who provided the feedback.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requestuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": "ID to associate the feedback to a previously logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requestdata_id", + "title": "data_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": "The feedback value to be set. This field should be left blank when unsetting 'rating', 'correction' or 'comment', but is required otherwise. + +The feedback value to be set. This field should be left blank when unsetting 'rating', 'correction' or 'comment', but is required otherwise.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requestvalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requestvalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requestvalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requestvalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requestvalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype", + "title": "type", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Type", + "title": "Feedback Type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Typerating", + "title": "rating", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Typeaction", + "title": "action", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Typeissue", + "title": "issue", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Typecorrection", + "title": "correction", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Request", + "title": "Feedback Request", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.Feedback%20Requesttype.Feedback%20Typecomment", + "title": "comment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + ], + "description": "If true, the value for this feedback is unset.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.0unset", + "title": "unset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + ], + "description": "User defined timestamp for when the feedback was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.0created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + ], + "description": "A unique identifier to who provided the feedback.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.0user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + ], + "description": "ID to associate the feedback to a previously logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.0data_id", + "title": "data_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + ], + "description": "The feedback value to be set. This field should be left blank when unsetting 'rating', 'correction' or 'comment', but is required otherwise. + +The feedback value to be set. This field should be left blank when unsetting 'rating', 'correction' or 'comment', but is required otherwise.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.0value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#request", + "title": "Request", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#request.body.0type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": "User defined timestamp for when the feedback was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsecreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": "A unique identifier to who provided the feedback.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responseuser", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": "ID to associate the feedback to a previously logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsedata_id", + "title": "data_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": "String ID of user feedback. Starts with \`ann_\`, short for annotation.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": "The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'. + +The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsevalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsevalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsevalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsevalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsevalue", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype", + "title": "type", + }, + ], + "description": "An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Type", + "title": "Feedback Type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Typerating", + "title": "rating", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Typeaction", + "title": "action", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Typeissue", + "title": "issue", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Typecorrection", + "title": "correction", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Response", + "title": "Feedback Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype", + "title": "type", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Type", + "title": "Feedback Type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.Feedback%20Responsetype.Feedback%20Typecomment", + "title": "comment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + ], + "description": "User defined timestamp for when the feedback was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.0created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + ], + "description": "A unique identifier to who provided the feedback.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.0user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + ], + "description": "ID to associate the feedback to a previously logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.0data_id", + "title": "data_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + ], + "description": "String ID of user feedback. Starts with \`ann_\`, short for annotation.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.0id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + ], + "description": "The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'. + +The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.0value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.body.0type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback", + "title": "Feedback", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/feedback/feedback#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/feedback", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/feedback/feedback#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + ], + "description": "Log a datapoint or array of datapoints to your Humanloop project.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestprovider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestprovider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestprompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestprompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestduration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requeststdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requesterror", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestcreated_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Optional parameter to provide feedback with your logged datapoint. + +Optional parameter to provide feedback with your logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestfeedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestfeedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestfeedback", + "title": "feedback", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestfeedback.Feedback", + "title": "Feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "The environment name used to create the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestenvironment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "The model config used for this generation. Required unless \`config_id\` is provided. + +The model config used for this generation. Required unless \`config_id\` is provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestconfig", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestconfig", + "title": "config", + }, + ], + "description": "Definition of tool within a model config. + +The subset of ToolConfig parameters received by the chat endpoint. +Does not have things like the signature or setup schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestconfig.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestconfig", + "title": "config", + }, + ], + "description": "Model config used for logging both chat and completion.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestconfig.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Unique ID of a config to associate to the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestconfig_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestjudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestjudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestjudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestjudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestjudgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if logging a parent datapoint with the intention to populate it later", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestoutput", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestmessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestmessages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "A unique string to reference the datapoint. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a subsequent log request.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestreference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestsource_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestsave", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestmetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestmetadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestsource", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestinputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestparent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestparent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestsession_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestsession_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Unique ID of a project to associate to the log. Either this or \`project\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestproject_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Request", + "title": "Log Request", + }, + ], + "description": "Unique project name. If no project exists with this name, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.Log%20Requestproject", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + ], + "description": "Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Optional parameter to provide feedback with your logged datapoint. + +Optional parameter to provide feedback with your logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "The environment name used to create the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "The model config used for this generation. Required unless \`config_id\` is provided. + +The model config used for this generation. Required unless \`config_id\` is provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Unique ID of a config to associate to the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0config_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if logging a parent datapoint with the intention to populate it later", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "A unique string to reference the datapoint. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a subsequent log request.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Unique ID of a project to associate to the log. Either this or \`project\` must be provided.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#request", + "title": "Request", + }, + ], + "description": "Unique project name. If no project exists with this name, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#request.body.0project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.body.Create%20Log%20Response", + "title": "Create Log Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/log#response.body.Create%20Log%20Response", + "title": "Create Log Response", + }, + ], + "description": "String ID of session the datapoint belongs to. Populated only if the datapoint was logged with \`session_id\` or \`session_reference_id\`, and is \`None\` otherwise. Starts with \`sesh_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.body.Create%20Log%20Responsesession_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/log#response.body.Create%20Log%20Response", + "title": "Create Log Response", + }, + ], + "description": "String ID of project the datapoint belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.body.Create%20Log%20Responseproject_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/log#response.body.Create%20Log%20Response", + "title": "Create Log Response", + }, + ], + "description": "String ID of logged datapoint. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.body.Create%20Log%20Responseid", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + ], + "description": "String ID of session the datapoint belongs to. Populated only if the datapoint was logged with \`session_id\` or \`session_reference_id\`, and is \`None\` otherwise. Starts with \`sesh_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.body.0session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + ], + "description": "String ID of project the datapoint belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.body.0project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + ], + "description": "String ID of logged datapoint. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.body.0id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/log#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/log#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/logs/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/log", + "title": "Log", + }, + { + "slug": "docs/v4/api-reference/logs/log#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/log#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/logs/log#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/logs/log#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + ], + "description": "Update a logged datapoint by its reference ID. + +The \`reference_id\` query parameter must be provided, and refers to the +\`reference_id\` of a previously-logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#request.query", + "title": "Query Parameters", + }, + ], + "description": "A unique string to reference the datapoint. Identifies the logged datapoint created with the same \`reference_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#request.query.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#request.query.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#request", + "title": "Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#request.body.duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#request", + "title": "Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#request", + "title": "Request", + }, + ], + "description": "Generated output from your model for the provided inputs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#request.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + ], + "description": "Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "A result from a tool used to populate the prompt template", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools.result", + "title": "result", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Raw output from the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Total number of tokens in the prompt and output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.tokens", + "title": "tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Latency of provider response.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "User email address provided when creating the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.tool_call", + "title": "tool_call", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.tool_call.arguments", + "title": "arguments", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.tool_call", + "title": "tool_call", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.tool_call.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant. + +A tool call to be made.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback", + "title": "feedback", + }, + ], + "description": "User defined timestamp for when the feedback was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback", + "title": "feedback", + }, + ], + "description": "A unique identifier to who provided the feedback.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback", + "title": "feedback", + }, + ], + "description": "ID to associate the feedback to a previously logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback.data_id", + "title": "data_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback", + "title": "feedback", + }, + ], + "description": "String ID of user feedback. Starts with \`ann_\`, short for annotation.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback", + "title": "feedback", + }, + ], + "description": "The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'. + +The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback", + "title": "feedback", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.feedback.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "The environment name used to create the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Unique ID of a config to associate to the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if logging a parent datapoint with the intention to populate it later", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Unique user-provided string identifying the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "The unique ID of the project associated with this log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "The name of the project associated with this log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "Status of a Log for observability. + +Observability is implemented by running monitoring Evaluators on Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.observability_status", + "title": "observability_status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.observability_status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.observability_status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.observability_status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.observability_status.failed", + "title": "failed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.evaluation_results.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Generic.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Tools associated with the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Model config associated with the agent. + +Model config used for logging both chat and completion.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Class of the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Agent.agent_class", + "title": "agent_class", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Type of evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Evaluator.evaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Code source of the tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Source of the tool. If defined at an organization level will be 'organization' else 'inline'. + +Source of tool. Used to differentiate between tools and tool versions when they are combined in a list. + +V4 uses organization and inline. Those are deprecated and will be removed in favour of tool and tool_version.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.source.organization", + "title": "organization", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.source.inline", + "title": "inline", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The function signature of the tool when being called.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.setup_schema", + "title": "setup_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "If is_preset = true, this is the name of the preset tool on Humanloop. This is used as the key to lookup the Humanloop runtime of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.preset_name", + "title": "preset_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the tool is one where Humanloop defines runtime or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.is_preset", + "title": "is_preset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Tool.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model", + "title": "Model", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.config.Model.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + ], + "description": "String ID of logged datapoint. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref", + "title": "Update By Reference", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update-by-ref#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + ], + "description": "Retrieve a log by log id.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of log to return. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + ], + "description": "Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "A result from a tool used to populate the prompt template", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tools.result", + "title": "result", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tools.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Raw output from the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Total number of tokens in the prompt and output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.tokens", + "title": "tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Latency of provider response.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "User email address provided when creating the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.tool_call", + "title": "tool_call", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.tool_call.arguments", + "title": "arguments", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.tool_call", + "title": "tool_call", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.tool_call.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant. + +A tool call to be made.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.feedback", + "title": "feedback", + }, + ], + "description": "User defined timestamp for when the feedback was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.feedback.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.feedback", + "title": "feedback", + }, + ], + "description": "A unique identifier to who provided the feedback.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.feedback.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.feedback", + "title": "feedback", + }, + ], + "description": "ID to associate the feedback to a previously logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.feedback.data_id", + "title": "data_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.feedback", + "title": "feedback", + }, + ], + "description": "String ID of user feedback. Starts with \`ann_\`, short for annotation.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.feedback.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.feedback", + "title": "feedback", + }, + ], + "description": "The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'. + +The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.feedback.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.feedback", + "title": "feedback", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.feedback.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "The environment name used to create the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Unique ID of a config to associate to the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if logging a parent datapoint with the intention to populate it later", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Unique user-provided string identifying the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "The unique ID of the project associated with this log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "The name of the project associated with this log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "Status of a Log for observability. + +Observability is implemented by running monitoring Evaluators on Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.observability_status", + "title": "observability_status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.observability_status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.observability_status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.observability_status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.observability_status.failed", + "title": "failed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.evaluation_results.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Generic.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Tools associated with the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Model config associated with the agent. + +Model config used for logging both chat and completion.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Class of the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Agent.agent_class", + "title": "agent_class", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Type of evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Evaluator.evaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Code source of the tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Source of the tool. If defined at an organization level will be 'organization' else 'inline'. + +Source of tool. Used to differentiate between tools and tool versions when they are combined in a list. + +V4 uses organization and inline. Those are deprecated and will be removed in favour of tool and tool_version.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.source.organization", + "title": "organization", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.source.inline", + "title": "inline", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The function signature of the tool when being called.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.setup_schema", + "title": "setup_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "If is_preset = true, this is the name of the preset tool on Humanloop. This is used as the key to lookup the Humanloop runtime of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.preset_name", + "title": "preset_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the tool is one where Humanloop defines runtime or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.is_preset", + "title": "is_preset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Tool.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model", + "title": "Model", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.config.Model.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + ], + "description": "String ID of logged datapoint. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/logs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/logs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/logs/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + ], + "description": "Update a logged datapoint in your Humanloop project.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/update#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of logged datapoint to return. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/logs/update#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#request", + "title": "Request", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#request.body.duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#request", + "title": "Request", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#request.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#request", + "title": "Request", + }, + ], + "description": "Generated output from your model for the provided inputs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#request.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + ], + "description": "Request model for logging a datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "List of batch IDs the log belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.batch_ids", + "title": "batch_ids", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function. + +Controls how the model uses tools. The following options are supported: 'none' forces the model to not call a tool; the default when no tools are provided as part of the model config. 'auto' the model can decide to call one of the provided tools; the default when tools are provided as part of the model config. Providing {'type': 'function', 'function': {name': }} forces the model to use the named function.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice", + "title": "tool_choice", + }, + ], + "description": "Tool choice to force the model to use a tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice.Tool%20Choicefunction", + "title": "function", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice", + "title": "tool_choice", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice.Tool%20Choice", + "title": "Tool Choice", + }, + ], + "description": "The type of tool to call.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice.Tool%20Choicetype", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tool_choice", + "title": "tool_choice", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "A result from a tool used to populate the prompt template", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tools.result", + "title": "result", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tools.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Reason the generation finished.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.finish_reason", + "title": "finish_reason", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Raw output from the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.raw_output", + "title": "raw_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Total number of tokens in the prompt and output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.tokens", + "title": "tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Latency of provider response.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.provider_latency", + "title": "provider_latency", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "User email address provided when creating the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Raw response received the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.provider_response", + "title": "provider_response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Raw request sent to provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.provider_request", + "title": "provider_request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_cost", + "title": "output_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Cost in dollars associated to the tokens in the prompt.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.prompt_cost", + "title": "prompt_cost", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Number of tokens in the output generated by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_tokens", + "title": "output_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Number of tokens in the prompt used to generate the output.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.prompt_tokens", + "title": "prompt_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "The message returned by the provider.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.tool_call", + "title": "tool_call", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.tool_call.arguments", + "title": "arguments", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.tool_call", + "title": "tool_call", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.tool_call.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + ], + "description": "A list of tool calls requested by the assistant. + +A tool call to be made.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message", + "title": "output_message", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output_message.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Duration of the logged event in seconds.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.duration", + "title": "duration", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Captured log and debug statements.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.stdout", + "title": "stdout", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Error message if the log is an error.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "User defined timestamp for when the log was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.feedback", + "title": "feedback", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.feedback", + "title": "feedback", + }, + ], + "description": "User defined timestamp for when the feedback was created.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.feedback.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.feedback", + "title": "feedback", + }, + ], + "description": "A unique identifier to who provided the feedback.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.feedback.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.feedback", + "title": "feedback", + }, + ], + "description": "ID to associate the feedback to a previously logged datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.feedback.data_id", + "title": "data_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.feedback", + "title": "feedback", + }, + ], + "description": "String ID of user feedback. Starts with \`ann_\`, short for annotation.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.feedback.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.feedback", + "title": "feedback", + }, + ], + "description": "The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'. + +The feedback value to set. This would be the appropriate text for 'correction' or 'comment', or a label to apply for 'rating', 'action', or 'issue'.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.feedback.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.feedback", + "title": "feedback", + }, + ], + "description": "The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'. + +The type of feedback. The default feedback types available are 'rating', 'action', 'issue', 'correction', and 'comment'.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.feedback.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "The environment name used to create the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.environment", + "title": "environment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Unique ID of a config to associate to the log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config_id", + "title": "config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.judgment", + "title": "judgment", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Generated output from your model for the provided inputs. Can be \`None\` if logging an error, or if logging a parent datapoint with the intention to populate it later", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.output", + "title": "output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "The messages passed to the to provider chat endpoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages", + "title": "messages", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.messages.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.messages.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Unique user-provided string identifying the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "ID of the source datapoint if this is a log derived from a datapoint in a dataset.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.source_datapoint_id", + "title": "source_datapoint_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Whether the request/response payloads will be stored on Humanloop.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.save", + "title": "save", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Any additional metadata to record.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.metadata", + "title": "metadata", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Identifies where the model was called from.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "The inputs passed to the prompt template.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.inputs", + "title": "inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "A unique string identifying the previously-logged parent datapoint in a session. Allows you to log nested datapoints with your internal system IDs by passing the same reference ID as \`parent_id\` in a prior log request. Specify at most one of this or \`parent_id\`. Note that this cannot refer to a datapoint being logged in the same request.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.parent_reference_id", + "title": "parent_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "ID associated to the parent datapoint in a session.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.parent_id", + "title": "parent_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "A unique string identifying the session to associate the datapoint to. Allows you to log multiple datapoints to a session (using an ID kept by your internal systems) by passing the same \`session_reference_id\` in subsequent log requests. Specify at most one of this or \`session_id\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.session_reference_id", + "title": "session_reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "ID of the session to associate the datapoint.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.session_id", + "title": "session_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "The unique ID of the project associated with this log.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "The name of the project associated with this log", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "Status of a Log for observability. + +Observability is implemented by running monitoring Evaluators on Logs.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.observability_status", + "title": "observability_status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.observability_status.pending", + "title": "pending", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.observability_status.running", + "title": "running", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.observability_status.completed", + "title": "completed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.observability_status", + "title": "observability_status", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.observability_status.failed", + "title": "failed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.error", + "title": "error", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.value", + "title": "value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.version", + "title": "version", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.version_id", + "title": "version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.evaluation_id", + "title": "evaluation_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.log_id", + "title": "log_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results", + "title": "evaluation_results", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.evaluation_results.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Generic.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Tools associated with the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Model config associated with the agent. + +Model config used for logging both chat and completion.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Class of the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Agent.agent_class", + "title": "agent_class", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Type of evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Evaluator.evaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Code source of the tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Source of the tool. If defined at an organization level will be 'organization' else 'inline'. + +Source of tool. Used to differentiate between tools and tool versions when they are combined in a list. + +V4 uses organization and inline. Those are deprecated and will be removed in favour of tool and tool_version.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.source.organization", + "title": "organization", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.source.inline", + "title": "inline", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The function signature of the tool when being called.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.setup_schema", + "title": "setup_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "If is_preset = true, this is the name of the preset tool on Humanloop. This is used as the key to lookup the Humanloop runtime of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.preset_name", + "title": "preset_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the tool is one where Humanloop defines runtime or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.is_preset", + "title": "is_preset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Tool.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model", + "title": "Model", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.config.Model.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + ], + "description": "String ID of logged datapoint. Starts with \`data_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/logs/list", + "title": "Logs", + }, + { + "slug": "docs/v4/api-reference/logs/update", + "title": "Update", + }, + { + "slug": "docs/v4/api-reference/logs/update#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/logs/update#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/logs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "PATCH", + "slug": "docs/v4/api-reference/logs/update#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + ], + "description": "Register a model config to a project. + +If the project name provided does not exist, a new project will be created +automatically. + +If the model config is the first to be associated to the project, it will +be set as the active model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Make tools available to OpenAIs chat model as functions.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Make tools available to OpenAIs chat model as functions.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.tools", + "title": "tools", + }, + ], + "description": "Definition of tool within a model config. + +The subset of ToolConfig parameters received by the chat endpoint. +Does not have things like the signature or setup schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.tools.Model%20Config%20Tool%20Request", + "title": "Model Config Tool Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.tools", + "title": "tools", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.tools.Linked%20Tool%20Request", + "title": "Linked Tool Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Which of the providers model endpoints to use. For example Complete or Edit. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.chat_template.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the provider model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Unique project ID", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Unique project name. If it does not exist, a new project will be created.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.project", + "title": "project", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#request", + "title": "Request", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#request.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + ], + "description": "Aggregates of evaluators for the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates.aggregate_value", + "title": "aggregate_value", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates.evaluator_version_id", + "title": "evaluator_version_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates.evaluator_id", + "title": "evaluator_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates", + "title": "evaluation_aggregates", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.evaluation_aggregates.model_config_id", + "title": "model_config_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + ], + "description": "Number of datapoints associated with this project model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.num_datapoints", + "title": "num_datapoints", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic", + "title": "Generic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic", + "title": "Generic", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Generic.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Tools associated with the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Model config associated with the agent. + +Model config used for logging both chat and completion.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent", + "title": "Agent", + }, + ], + "description": "Class of the agent.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Agent.agent_class", + "title": "agent_class", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The type of the return value of the evaluator. + +Enum representing the possible return types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type", + "title": "return_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type.boolean", + "title": "boolean", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type.number", + "title": "number", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type.select", + "title": "select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type.multi_select", + "title": "multi_select", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type", + "title": "return_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.return_type.text", + "title": "text", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The model config defining the LLM evaluator. + +Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.model_config", + "title": "model_config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Description of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "The code for the evaluator. This code will be executed in a sandboxed environment.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.code", + "title": "code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether this evaluator is target-free or target-required. + +Enum representing the possible argument types of an evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.arguments_type.target_free", + "title": "target_free", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.arguments_type", + "title": "arguments_type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.arguments_type.target_required", + "title": "target_required", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Name of config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator", + "title": "Evaluator", + }, + ], + "description": "Type of evaluator.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Evaluator.evaluator_type", + "title": "evaluator_type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Code source of the tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Source of the tool. If defined at an organization level will be 'organization' else 'inline'. + +Source of tool. Used to differentiate between tools and tool versions when they are combined in a list. + +V4 uses organization and inline. Those are deprecated and will be removed in favour of tool and tool_version.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.source.organization", + "title": "organization", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.source.inline", + "title": "inline", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The function signature of the tool when being called.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.setup_schema", + "title": "setup_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "If is_preset = true, this is the name of the preset tool on Humanloop. This is used as the key to lookup the Humanloop runtime of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.preset_name", + "title": "preset_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the tool is one where Humanloop defines runtime or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.is_preset", + "title": "is_preset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool", + "title": "Tool", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Tool.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config", + "title": "config", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model", + "title": "Model", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.config.Model.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.last_used", + "title": "last_used", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + ], + "description": "Name of the project the model config belongs to.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.project_name", + "title": "project_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + ], + "description": "String ID of project the model config belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.body.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Register", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/register#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/register#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + ], + "description": "Get a specific model config by ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of the model config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "If is_preset = true, this is the name of the preset tool on Humanloop. This is used as the key to lookup the Humanloop runtime of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.preset_name", + "title": "preset_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Whether the tool is one where Humanloop defines runtime or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.is_preset", + "title": "is_preset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "The function signature of the tool when being called.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.setup_schema", + "title": "setup_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Code source of the tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Source of the tool. If defined at an organization level will be 'organization' else 'inline'. + +Source of tool. Used to differentiate between tools and tool versions when they are combined in a list. + +V4 uses organization and inline. Those are deprecated and will be removed in favour of tool and tool_version.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.source.organization", + "title": "organization", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.source.inline", + "title": "inline", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tool_configs.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools", + "title": "tools", + }, + ], + "description": "The origin of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools", + "title": "tools", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools", + "title": "tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools", + "title": "tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools", + "title": "tools", + }, + ], + "description": "The ID of the tool. Starts with either \`config_\` or \`oc_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.chat_template.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/model-configs/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + ], + "description": "Export a model config to a .prompt file by ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/export", + "title": "Export by ID", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/export", + "title": "Export by ID", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of the model config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/export#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/export", + "title": "Export by ID", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/export#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/export", + "title": "Export by ID", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/export#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/export", + "title": "Export by ID", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/export#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/export", + "title": "Export by ID", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/export#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/export", + "title": "Export by ID", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/export#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/export", + "title": "Export by ID", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/export#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/", + }, + { + "type": "pathParameter", + "value": "id", + }, + { + "type": "literal", + "value": "/export", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/export#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + ], + "description": "Serialize a model config to a .prompt file format.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + ], + "description": "Completion model config request", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestendpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestendpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestendpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestendpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestendpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestendpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestendpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestresponse_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestseed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestother", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestother", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestfrequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestpresence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requeststop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requeststop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requeststop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requesttop_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requesttemperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestmax_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestprovider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestdescription", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestname", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Request", + "title": "Model Config Completion Request", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Completion%20Requestmodel", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + ], + "description": "Chat model config request.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "Make tools available to OpenAIs chat model as functions.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requesttools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "Make tools available to OpenAIs chat model as functions.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requesttools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestchat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestchat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestendpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestendpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestendpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestendpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestendpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestendpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestendpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestresponse_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestseed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestother", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestother", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestfrequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestpresence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requeststop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requeststop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requeststop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requesttop_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requesttemperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestmax_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestprovider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestdescription", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestname", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Request", + "title": "Model Config Chat Request", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#request.body.Model%20Config%20Chat%20Requestmodel", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize", + "title": "Serialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/serialize#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/serialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/serialize#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + ], + "description": "Deserialize a model config from a .prompt file format.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#request", + "title": "Request", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#request", + "title": "Request", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#request.body.config", + "title": "config", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + ], + "description": "Model config request. + +Contains fields that are common to all (i.e. both chat and complete) endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "NB: Deprecated with tools field. Definition of tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "If is_preset = true, this is the name of the preset tool on Humanloop. This is used as the key to lookup the Humanloop runtime of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.preset_name", + "title": "preset_name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Whether the tool is one where Humanloop defines runtime or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.is_preset", + "title": "is_preset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "The function signature of the tool when being called.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.signature", + "title": "signature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.setup_schema", + "title": "setup_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Code source of the tool.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.source_code", + "title": "source_code", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Source of the tool. If defined at an organization level will be 'organization' else 'inline'. + +Source of tool. Used to differentiate between tools and tool versions when they are combined in a list. + +V4 uses organization and inline. Those are deprecated and will be removed in favour of tool and tool_version.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.source.organization", + "title": "organization", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.source", + "title": "source", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.source.inline", + "title": "inline", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "The user who created the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.created_by", + "title": "created_by", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Other parameters that define the config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "Whether the config is committed or not.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.status", + "title": "status", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs", + "title": "tool_configs", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tool_configs.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "The provider model endpoint used. + +Supported model provider endpoints.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.endpoint", + "title": "endpoint", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.endpoint.complete", + "title": "complete", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.endpoint.chat", + "title": "chat", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.endpoint", + "title": "endpoint", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.endpoint.edit", + "title": "edit", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "Tools shown to the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools", + "title": "tools", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools", + "title": "tools", + }, + ], + "description": "The origin of the tool", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools.source", + "title": "source", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools", + "title": "tools", + }, + ], + "description": "Definition of parameters needed to run the tool. Provided in jsonschema format: https://json-schema.org/", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools.parameters", + "title": "parameters", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools", + "title": "tools", + }, + ], + "description": "Description of the tool referenced by the model", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools", + "title": "tools", + }, + ], + "description": "Name for the tool referenced by the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools", + "title": "tools", + }, + ], + "description": "The ID of the tool. Starts with either \`config_\` or \`oc_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.tools.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "Messages prepended to the list of messages sent to the provider. These messages that will take your specified inputs to form your final request to the provider model. NB: Input variables within the template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "NB: Deprecated in favour of tool_calls. A tool call requested by the assistant. + +A function tool to be called by the model where user owns runtime.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.tool_call", + "title": "tool_call", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "A list of tool calls requested by the assistant.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.tool_calls", + "title": "tool_calls", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "Tool call that this message is responding to.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.tool_call_id", + "title": "tool_call_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "Optional name of the message author.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "The content of the message. + +The content of the message.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.content", + "title": "content", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + ], + "description": "Role of the message author. + +An enumeration.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.role", + "title": "role", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.role.user", + "title": "user", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.role.assistant", + "title": "assistant", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.role.system", + "title": "system", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template", + "title": "chat_template", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.role", + "title": "role", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.chat_template.role.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "Prompt template that will take your specified inputs to form your final request to the model. NB: Input variables within the prompt template should be specified with syntax: {{INPUT_NAME}}.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.prompt_template", + "title": "prompt_template", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "The format of the response. Only type json_object is currently supported for chat. + +Response format of the model.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format", + "title": "response_format", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format", + "title": "response_format", + }, + ], + "description": "The JSON schema of the response format if type is json_schema.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format", + "title": "response_format", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format.type.json_object", + "title": "json_object", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format", + "title": "response_format", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.response_format.type.json_schema", + "title": "json_schema", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "If specified, model will make a best effort to sample deterministically, but it is not guaranteed.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.seed", + "title": "seed", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on how frequently they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.frequency_penalty", + "title": "frequency_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the generation so far.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.presence_penalty", + "title": "presence_penalty", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence. + +The string (or list of strings) after which the model will stop generating. The returned text will not contain the stop sequence.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.stop", + "title": "stop", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.top_p", + "title": "top_p", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "What sampling temperature to use when making a generation. Higher values means the model will be more creative.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.temperature", + "title": "temperature", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "The maximum number of tokens to generate. Provide max_tokens=-1 to dynamically calculate the maximum number of tokens to generate given the length of the prompt", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.max_tokens", + "title": "max_tokens", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "The company providing the underlying model service. + +Supported model providers.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider.openai", + "title": "openai", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider.openai_azure", + "title": "openai_azure", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider.mock", + "title": "mock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider.anthropic", + "title": "anthropic", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider.bedrock", + "title": "bedrock", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider.cohere", + "title": "cohere", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider.replicate", + "title": "replicate", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider.google", + "title": "google", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider", + "title": "provider", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.provider.groq", + "title": "groq", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "A description of the model config.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.description", + "title": "description", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "A friendly display name for the model config. If not provided, a name will be generated.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "Other parameter values to be passed to the provider call.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.other", + "title": "other", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "The model instance used. E.g. text-davinci-002.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.model", + "title": "model", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + ], + "description": "String ID of config. Starts with \`config_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/model-configs/register", + "title": "Model Configs", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize", + "title": "Deserialize", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/model-configs/deserialize", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/model-configs/deserialize#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + ], + "description": "Get a page of sessions.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "String ID of project to return sessions for. Sessions that contain any datapoints associated to this project will be returned. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#request.query.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#request.query.project_id", + "title": "project_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Page to fetch. Starts from 1.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#request.query.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request.query", + "title": "Query Parameters", + }, + ], + "description": "Number of sessions to retrieve.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/sessions/list#request.query", + "title": "Query Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#request.query.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.total", + "title": "total", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.size", + "title": "size", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.page", + "title": "page", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + }, + ], + "description": "Output for the last datapoint in the session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records.last_output", + "title": "last_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + }, + ], + "description": "Inputs for the first datapoint in the session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records.first_inputs", + "title": "first_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + }, + ], + "description": "Unique user-provided string identifying the session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + }, + ], + "description": "Number of datapoints associated to this session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + }, + ], + "description": "List of projects that have datapoints associated to this session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records.projects", + "title": "projects", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.body.records", + "title": "records", + }, + ], + "description": "String ID of session. Starts with \`sesh_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.body.records.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "List ", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/sessions/list#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/list#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + ], + "description": "Create a new session. + +Returns a session ID that can be used to log datapoints to the session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/sessions/create", + "title": "Create", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/create", + "title": "Create", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/sessions/create#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response", + "title": "Response", + }, + ], + "description": "String ID of session. Starts with \`sesh_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/sessions/create#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/sessions/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/sessions/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/sessions/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/create", + "title": "Create", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/sessions/create#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "POST", + "slug": "docs/v4/api-reference/sessions/create#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + ], + "description": "Get a session by ID.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + "type": "endpoint-v4", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/sessions/get#request.path", + "title": "Path Parameters", + }, + ], + "description": "String ID of session to return. Starts with \`sesh_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#request", + "title": "Request", + }, + { + "slug": "docs/v4/api-reference/sessions/get#request.path", + "title": "Path Parameters", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#request.path.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": "Output for the last datapoint in the session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.last_output", + "title": "last_output", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": "Inputs for the first datapoint in the session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.first_inputs", + "title": "first_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": "Inputs for the first datapoint in the session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.first_inputs", + "title": "first_inputs", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": "Unique user-provided string identifying the session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.reference_id", + "title": "reference_id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.updated_at", + "title": "updated_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.created_at", + "title": "created_at", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": "Number of datapoints associated to this session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.datapoints_count", + "title": "datapoints_count", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": "List of projects that have datapoints associated to this session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": "List of projects that have datapoints associated to this session.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + }, + ], + "description": "Type of project. e.g. \`prompt\` or \`tool\`. + +Enum for File types.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type", + "title": "type", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type.prompt", + "title": "prompt", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type.tool", + "title": "tool", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type.dataset", + "title": "dataset", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type.evaluator", + "title": "evaluator", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type", + "title": "type", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.type.flow", + "title": "flow", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.name", + "title": "name", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.body.projects", + "title": "projects", + }, + ], + "description": "String ID of project the datapoint belongs to. Starts with \`pr_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.projects.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + ], + "description": "String ID of session. Starts with \`sesh_\`.", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.body.id", + "title": "id", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.error", + "title": "Errors", + }, + ], + "description": "Validation Error", + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.error", + "title": "Errors", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, + { + "availability": undefined, + "breadcrumbs": [ + { + "slug": "docs/v4/api-reference", + "title": "Humanloop API", + }, + { + "slug": "docs/v4/api-reference/sessions/list", + "title": "Sessions", + }, + { + "slug": "docs/v4/api-reference/sessions/get", + "title": "Get", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response", + "title": "Response", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.error", + "title": "Errors", + }, + { + "slug": "docs/v4/api-reference/sessions/get#response.error.UnprocessableEntity", + "title": "Unprocessable Entity", + }, + ], + "description": undefined, + "endpointPath": [ + { + "type": "literal", + "value": "/sessions/", + }, + { + "type": "pathParameter", + "value": "id", + }, + ], + "extends": undefined, + "indexSegmentId": "0", + "isResponseStream": false, + "method": "GET", + "slug": "docs/v4/api-reference/sessions/get#response.error.UnprocessableEntity.detail", + "title": "detail", + "type": "endpoint-field-v1", + "version": { + "id": "v4.0", + "slug": "docs/v4/overview", + }, + }, +] +`; diff --git a/packages/ui/fern-docs-search-server/src/algolia/__test__/humanloop.test.ts b/packages/ui/fern-docs-search-server/src/algolia/__test__/humanloop.test.ts new file mode 100644 index 0000000000..69fd396074 --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/__test__/humanloop.test.ts @@ -0,0 +1,45 @@ +import { Algolia, ApiDefinition, DocsV2Read, FernNavigation } from "@fern-api/fdr-sdk"; +import { mapValues } from "es-toolkit/object"; +import fs from "fs"; +import path from "path"; +import { generateAlgoliaRecords } from "../records/generateAlgoliaRecords.js"; + +const fixturesDir = path.join(__dirname, "../../../../../fdr-sdk/src/__test__/fixtures"); + +function readFixture(fixture: string) { + const fixturePath = path.join(fixturesDir, `${fixture}.json`); + const content = fs.readFileSync(fixturePath, "utf-8"); + return JSON.parse(content) as DocsV2Read.LoadDocsForUrlResponse; +} + +describe("humanloop", () => { + it("should work", () => { + const fixture = readFixture("humanloop"); + const root = FernNavigation.utils.toRootNode(fixture); + + const apis = Object.fromEntries( + Object.values(fixture.definition.apis).map((api) => { + return [ + api.id, + ApiDefinition.ApiDefinitionV1ToLatest.from(api, { + useJavaScriptAsTypeScript: false, + alwaysEnableJavaScriptFetch: false, + usesApplicationJsonInFormDataValue: false, + }).migrate(), + ]; + }), + ); + + const pages = mapValues(fixture.definition.pages, (page) => page.markdown); + + const records = generateAlgoliaRecords({ + indexSegmentId: Algolia.IndexSegmentId("0"), + nodes: root, + pages, + apis, + isFieldRecordsEnabled: true, + }); + + expect(records).toMatchSnapshot(); + }); +}); diff --git a/packages/ui/fern-docs-search-server/src/algolia/getSearchApiKey.ts b/packages/ui/fern-docs-search-server/src/algolia/getSearchApiKey.ts new file mode 100644 index 0000000000..e890339a41 --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/getSearchApiKey.ts @@ -0,0 +1,12 @@ +import { algoliaApiKey, algoliaSearchIndex, provideAlgoliaClient } from "./service.js"; + +export async function getSearchApiKey(indexSegmentId: string): Promise { + return provideAlgoliaClient().generateSecuredApiKey({ + parentApiKey: algoliaApiKey(), + restrictions: { + filters: `indexSegmentId:${indexSegmentId}`, + validUntil: Math.floor(Date.now() / 1_000) + 60 * 60 * 24, + restrictIndices: [algoliaSearchIndex()], + }, + }); +} diff --git a/packages/ui/fern-docs-search-server/src/algolia/index.ts b/packages/ui/fern-docs-search-server/src/algolia/index.ts new file mode 100644 index 0000000000..949ef5ee40 --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/index.ts @@ -0,0 +1,2 @@ +export * from "./getSearchApiKey.js"; +export * from "./records/index.js"; diff --git a/packages/ui/fern-docs-search-server/src/algolia/records/generateAlgoliaRecords.ts b/packages/ui/fern-docs-search-server/src/algolia/records/generateAlgoliaRecords.ts new file mode 100644 index 0000000000..b626a5f323 --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/records/generateAlgoliaRecords.ts @@ -0,0 +1,182 @@ +import { Algolia, ApiDefinition, FernNavigation } from "@fern-api/fdr-sdk"; +import { isNonNullish } from "@fern-api/ui-core-utils"; +import { generateEndpointFieldRecords, generateEndpointRecord } from "./generateEndpointRecords.js"; +import { generateMarkdownRecords } from "./generateMarkdownRecords.js"; +import { generateWebSocketFieldRecords, generateWebSocketRecord } from "./generateWebSocketRecords.js"; +import { generateWebhookFieldRecords, generateWebhookRecord } from "./generateWebhookRecords.js"; + +interface GenerateAlgoliaRecordsOptions { + indexSegmentId: Algolia.IndexSegmentId; + nodes: FernNavigation.RootNode; + pages: Record; + apis: Record; + isFieldRecordsEnabled: boolean; +} + +export function generateAlgoliaRecords({ + indexSegmentId, + nodes, + pages, + apis, + isFieldRecordsEnabled, +}: GenerateAlgoliaRecordsOptions): Algolia.AlgoliaRecord[] { + const collector = FernNavigation.NodeCollector.collect(nodes); + + const indexablePageNodes = collector.indexablePageSlugs + .map((slug) => collector.slugMap.get(slug)) + .filter(isNonNullish); + + if (collector.indexablePageSlugs.length !== indexablePageNodes.length) { + // eslint-disable-next-line no-console + console.warn( + `Some indexable page nodes were not found: ${collector.indexablePageSlugs.filter( + (slug) => !collector.slugMap.has(slug), + )}`, + ); + } + + const markdownNodes = indexablePageNodes.filter(FernNavigation.hasMarkdown); + const apiLeafNodes = indexablePageNodes.filter(FernNavigation.isApiLeaf); + + const records: Algolia.AlgoliaRecord[] = []; + + /** + * Markdown nodes contain pages, sections with overview content, and changelog nodes + * TODO: we probably want to show changelog nodes as a separate entity. + */ + markdownNodes.forEach((node) => { + const pageId = FernNavigation.getPageId(node); + if (!pageId) { + // eslint-disable-next-line no-console + console.error(`Page node ${node.slug} has no page id`); + return; + } + const markdown = pages[pageId]; + if (!markdown) { + // eslint-disable-next-line no-console + console.error(`Page node ${node.slug} has page id ${pageId} but no markdown`); + return; + } + + const parents = collector.getParents(node.id) ?? []; + const breadcrumb = FernNavigation.utils.createBreadcrumb(parents); + const versionNode = parents.find((n): n is FernNavigation.VersionNode => n.type === "version"); + const version: Algolia.AlgoliaRecordVersionV3 | undefined = versionNode + ? { id: versionNode.versionId, slug: FernNavigation.V1.Slug(versionNode.pointsTo ?? versionNode.slug) } + : undefined; + + records.push( + ...generateMarkdownRecords({ + indexSegmentId, + breadcrumb, + node, + version, + markdown, + }), + ); + }); + + apiLeafNodes.forEach((node) => { + const apiDefinition = apis[node.apiDefinitionId]; + + if (!apiDefinition) { + // eslint-disable-next-line no-console + console.error( + `API leaf node ${node.slug} has api definition id ${node.apiDefinitionId} but no api definition`, + ); + return; + } + + const parents = collector.getParents(node.id) ?? []; + const breadcrumb = FernNavigation.utils.createBreadcrumb(parents); + const versionNode = parents.find((n): n is FernNavigation.VersionNode => n.type === "version"); + const version: Algolia.AlgoliaRecordVersionV3 | undefined = versionNode + ? { id: versionNode.versionId, slug: FernNavigation.V1.Slug(versionNode.pointsTo ?? versionNode.slug) } + : undefined; + + if (node.type === "endpoint") { + const endpoint = apiDefinition.endpoints[node.endpointId]; + if (!endpoint) { + // eslint-disable-next-line no-console + console.error(`API leaf node ${node.slug} has endpoint id ${node.endpointId} but no endpoint`); + return; + } + + const endpointRecord = generateEndpointRecord({ + indexSegmentId, + node, + breadcrumb, + endpoint, + version, + }); + + records.push(endpointRecord); + + if (isFieldRecordsEnabled) { + records.push( + ...generateEndpointFieldRecords({ + endpointRecord, + endpoint, + types: apiDefinition.types, + }), + ); + } + } else if (node.type === "webSocket") { + const channel = apiDefinition.websockets[node.webSocketId]; + if (!channel) { + // eslint-disable-next-line no-console + console.error(`API leaf node ${node.slug} has web socket id ${node.webSocketId} but no web socket`); + return; + } + + const channelRecord = generateWebSocketRecord({ + indexSegmentId, + node, + breadcrumb, + channel, + version, + }); + + records.push(channelRecord); + + if (isFieldRecordsEnabled) { + records.push( + ...generateWebSocketFieldRecords({ + channelRecord, + channel, + types: apiDefinition.types, + }), + ); + } + } else if (node.type === "webhook") { + const webhook = apiDefinition.webhooks[node.webhookId]; + if (!webhook) { + // eslint-disable-next-line no-console + console.error(`API leaf node ${node.slug} has web hook id ${node.webhookId} but no web hook`); + return; + } + + const webhookRecord = generateWebhookRecord({ + indexSegmentId, + node, + breadcrumb, + webhook, + version, + }); + + records.push(webhookRecord); + + if (isFieldRecordsEnabled) { + records.push( + ...generateWebhookFieldRecords({ + webhookRecord, + webhook, + types: apiDefinition.types, + }), + ); + } + } + }); + + return records; +} diff --git a/packages/ui/fern-docs-search-server/src/algolia/records/generateEndpointRecords.ts b/packages/ui/fern-docs-search-server/src/algolia/records/generateEndpointRecords.ts new file mode 100644 index 0000000000..3d20388986 --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/records/generateEndpointRecords.ts @@ -0,0 +1,201 @@ +import { Algolia, ApiDefinition, FernNavigation } from "@fern-api/fdr-sdk"; +import { convertNameToAnchorPart, toBreadcrumbs, toDescription } from "./utils.js"; + +interface GenerateEndpointRecordsOptions { + indexSegmentId: Algolia.IndexSegmentId; + node: FernNavigation.EndpointNode; + breadcrumb: readonly FernNavigation.BreadcrumbItem[]; + endpoint: ApiDefinition.EndpointDefinition; + version: Algolia.AlgoliaRecordVersionV3 | undefined; +} + +export function generateEndpointRecord({ + indexSegmentId, + node, + breadcrumb, + endpoint, + version, +}: GenerateEndpointRecordsOptions): Algolia.AlgoliaRecord.EndpointV4 { + const endpointRecord: Algolia.AlgoliaRecord.EndpointV4 = { + type: "endpoint-v4", + method: endpoint.method, + endpointPath: endpoint.path, + isResponseStream: endpoint.response?.body.type === "stream" || endpoint.response?.body.type === "streamingText", + title: node.title, + description: toDescription([ + endpoint.description, + endpoint.request?.description, + endpoint.response?.description, + ]), + breadcrumbs: breadcrumb.map((breadcrumb) => ({ + title: breadcrumb.title, + slug: breadcrumb.pointsTo ?? "", + })), + slug: FernNavigation.V1.Slug(node.canonicalSlug ?? node.slug), + version, + indexSegmentId, + }; + + return endpointRecord; +} + +interface GenerateEndpointFieldRecordsOptions { + endpointRecord: Algolia.AlgoliaRecord.EndpointV4; + endpoint: ApiDefinition.EndpointDefinition; + types: Record; +} + +export function generateEndpointFieldRecords({ + endpointRecord, + endpoint, + types, +}: GenerateEndpointFieldRecordsOptions): Algolia.AlgoliaRecord.EndpointFieldV1[] { + const fieldRecords: Algolia.AlgoliaRecord.EndpointFieldV1[] = []; + + function push(items: ApiDefinition.TypeDefinitionTreeItem[]) { + items.forEach((item) => { + const breadcrumbs = toBreadcrumbs(endpointRecord, item.path); + const last = breadcrumbs[breadcrumbs.length - 1]; + + if (!last) { + throw new Error("Breadcrumb should have at least 1"); + } + + fieldRecords.push({ + ...endpointRecord, + type: "endpoint-field-v1", + title: last.title, + description: toDescription(item.descriptions), + breadcrumbs: breadcrumbs.slice(0, breadcrumbs.length - 1), + slug: FernNavigation.V1.Slug(last.slug), + availability: item.availability, + extends: undefined, + }); + }); + } + + endpoint.requestHeaders?.forEach((property) => { + push( + ApiDefinition.collectTypeDefinitionTreeForObjectProperty(property, types, [ + { type: "meta", value: "request", displayName: "Request" }, + { type: "meta", value: "header", displayName: "Headers" }, + ]), + ); + }); + + endpoint.queryParameters?.forEach((property) => { + push( + ApiDefinition.collectTypeDefinitionTreeForObjectProperty(property, types, [ + { type: "meta", value: "request", displayName: "Request" }, + { type: "meta", value: "query", displayName: "Query Parameters" }, + ]), + ); + }); + + endpoint.pathParameters?.forEach((property) => { + push( + ApiDefinition.collectTypeDefinitionTreeForObjectProperty(property, types, [ + { type: "meta", value: "request", displayName: "Request" }, + { type: "meta", value: "path", displayName: "Path Parameters" }, + ]), + ); + }); + + if (endpoint.request) { + switch (endpoint.request.body.type) { + case "object": + case "alias": + push( + ApiDefinition.collectTypeDefinitionTree(endpoint.request.body, types, { + path: [ + { type: "meta", value: "request", displayName: "Request" }, + { type: "meta", value: "body", displayName: undefined }, + ], + }), + ); + break; + case "bytes": + case "formData": + // TODO: implement this + break; + } + } + + endpoint.responseHeaders?.forEach((property) => { + push( + ApiDefinition.collectTypeDefinitionTreeForObjectProperty(property, types, [ + { type: "meta", value: "response", displayName: "Response" }, + { type: "meta", value: "header", displayName: "Headers" }, + ]), + ); + }); + + if (endpoint.response) { + switch (endpoint.response.body.type) { + case "alias": + case "object": + push( + ApiDefinition.collectTypeDefinitionTree(endpoint.response.body, types, { + path: [ + { type: "meta", value: "response", displayName: "Response" }, + { type: "meta", value: "body", displayName: undefined }, + ], + }), + ); + break; + case "stream": + push( + ApiDefinition.collectTypeDefinitionTree(endpoint.response.body.shape, types, { + path: [ + { type: "meta", value: "response", displayName: "Response" }, + { type: "meta", value: "body", displayName: undefined }, + { type: "meta", value: "stream", displayName: undefined }, + ], + }), + ); + break; + case "fileDownload": + case "streamingText": + // TODO: implement this + break; + } + } + + endpoint.errors?.forEach((error) => { + if (error.shape != null) { + if (error.description) { + fieldRecords.push({ + ...endpointRecord, + type: "endpoint-field-v1", + title: error.name, + description: toDescription([error.description]), + breadcrumbs: toBreadcrumbs(endpointRecord, [ + { type: "meta", value: "response", displayName: "Response" }, + { type: "meta", value: "error", displayName: "Errors" }, + ]), + slug: FernNavigation.V1.Slug( + `${endpointRecord.slug}#response.error.${convertNameToAnchorPart(error.name) ?? error.statusCode}`, + ), + availability: error.availability, + extends: undefined, + }); + } + + push( + ApiDefinition.collectTypeDefinitionTree(error.shape, types, { + path: [ + { type: "meta", value: "response", displayName: "Response" }, + { type: "meta", value: "error", displayName: "Errors" }, + { + type: "meta", + value: convertNameToAnchorPart(error.name) ?? error.statusCode.toString(), + displayName: error.name, + }, + ], + }), + ); + } + }); + + return fieldRecords; +} diff --git a/packages/ui/fern-docs-search-server/src/algolia/records/generateMarkdownRecords.ts b/packages/ui/fern-docs-search-server/src/algolia/records/generateMarkdownRecords.ts new file mode 100644 index 0000000000..4609916357 --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/records/generateMarkdownRecords.ts @@ -0,0 +1,101 @@ +import { Algolia, FernNavigation } from "@fern-api/fdr-sdk"; +import { isNonNullish } from "@fern-api/ui-core-utils"; +import { MarkdownSectionRoot, getFrontmatter, splitMarkdownIntoSections } from "@fern-ui/fern-docs-mdx"; + +interface GenerateMarkdownRecordsOptions { + indexSegmentId: Algolia.IndexSegmentId; + breadcrumb: readonly FernNavigation.BreadcrumbItem[]; + node: FernNavigation.NavigationNodeWithMarkdown; + version: Algolia.AlgoliaRecordVersionV3 | undefined; + markdown: string; +} + +export function generateMarkdownRecords({ + indexSegmentId, + breadcrumb, + node, + version, + markdown, +}: GenerateMarkdownRecordsOptions): Algolia.AlgoliaRecord.PageV4[] { + const { data, content } = getFrontmatter(markdown); + + /** + * If the title is not set in the frontmatter, use the title from the sidebar. + */ + // TODO: handle case where title is set in

tag (this should be an upstream utility) + const title = data.title ?? node.title; + + const sections = [...splitMarkdownIntoSections(content)]; + + const slug = FernNavigation.V1.Slug(node.canonicalSlug ?? node.slug); + + // meta descriptions will be pre-pended to the root node, so we need to collect them here: + const metaDescriptions = [data.description, data.subtitle ?? data.excerpt, data["og:description"]]; + + const rootBreadcrumbs = breadcrumb.map((breadcrumb) => ({ + title: breadcrumb.title, + slug: breadcrumb.pointsTo ?? "", + })); + + // the root content can be missing if there is a subheading that immediately after the top of the page. + let rootContent: string | undefined; + if (sections[0]?.type === "root") { + const rootSection = sections.shift() as MarkdownSectionRoot; + rootContent = rootSection.content; + } + + // collect all meta descriptions along with the root content, all of which can be used for string matching + rootContent = [...metaDescriptions, rootContent] + .filter(isNonNullish) + .map((text) => text.trim()) + .filter((text) => text.length > 0) + .join("\n\n"); + + const records: Algolia.AlgoliaRecord.PageV4[] = []; + + // we should still insert this record even if there's no content, because + // the title of the record can still be matched + records.push({ + type: "page-v4", + title, + slug, + description: rootContent.length > 0 ? rootContent : undefined, + breadcrumbs: rootBreadcrumbs, + version, + indexSegmentId, + }); + + sections.forEach((section, i) => { + if (section.type === "root") { + // the root section should have been shifted off this array earlier + throw new Error(`Invariant: unexpected root section detected at index=${i + 1}`); + } + + const { heading, content, parents } = section; + + const breadcrumbs = [ + ...rootBreadcrumbs, + ...parents.map((parent) => ({ + title: parent.title, + slug: FernNavigation.V1.Slug(`${slug}#${parent.anchor}`), + })), + ]; + + // Note: unlike the root content, it's less important if subheadings are not indexed if there's no content inside + // which should already been filtered out by splitMarkdownIntoSections() + // TODO: we should probably separate this out into another record-type specifically for subheadings. + const record: Algolia.AlgoliaRecord.PageV4 = { + type: "page-v4", + title: heading.title, + slug: FernNavigation.V1.Slug(`${slug}#${heading.anchor}`), + description: content, + breadcrumbs, + version, + indexSegmentId, + }; + + records.push(record); + }); + + return records; +} diff --git a/packages/ui/fern-docs-search-server/src/algolia/records/generateWebSocketRecords.ts b/packages/ui/fern-docs-search-server/src/algolia/records/generateWebSocketRecords.ts new file mode 100644 index 0000000000..38df711c4b --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/records/generateWebSocketRecords.ts @@ -0,0 +1,121 @@ +import { Algolia, ApiDefinition, FernNavigation } from "@fern-api/fdr-sdk"; +import { toBreadcrumbs, toDescription } from "./utils.js"; + +interface GenerateWebSocketRecordOptions { + indexSegmentId: Algolia.IndexSegmentId; + node: FernNavigation.WebSocketNode; + breadcrumb: readonly FernNavigation.BreadcrumbItem[]; + channel: ApiDefinition.WebSocketChannel; + version: Algolia.AlgoliaRecordVersionV3 | undefined; +} + +export function generateWebSocketRecord({ + indexSegmentId, + node, + breadcrumb, + channel, + version, +}: GenerateWebSocketRecordOptions): Algolia.AlgoliaRecord.WebsocketV4 { + const channelRecord: Algolia.AlgoliaRecord.WebsocketV4 = { + type: "websocket-v4", + title: node.title, + description: toDescription([channel.description]), + breadcrumbs: breadcrumb.map((breadcrumb) => ({ + title: breadcrumb.title, + slug: breadcrumb.pointsTo ?? "", + })), + endpointPath: channel.path, + slug: FernNavigation.V1.Slug(node.canonicalSlug ?? node.slug), + version, + indexSegmentId, + }; + return channelRecord; +} + +interface GenerateWebSocketFieldRecordsOptions { + channelRecord: Algolia.AlgoliaRecord.WebsocketV4; + channel: ApiDefinition.WebSocketChannel; + types: Record; +} + +export function generateWebSocketFieldRecords({ + channelRecord, + channel, + types, +}: GenerateWebSocketFieldRecordsOptions): Algolia.AlgoliaRecord.WebsocketFieldV1[] { + const fieldRecords: Algolia.AlgoliaRecord.WebsocketFieldV1[] = []; + + function push(items: ApiDefinition.TypeDefinitionTreeItem[]) { + items.forEach((item) => { + const breadcrumbs = toBreadcrumbs(channelRecord, item.path); + const last = breadcrumbs[breadcrumbs.length - 1]; + if (!last) { + throw new Error("Breadcrumb should have at least 1"); + } + + fieldRecords.push({ + ...channelRecord, + type: "websocket-field-v1", + title: last.title, + description: toDescription(item.descriptions), + breadcrumbs: breadcrumbs.slice(0, breadcrumbs.length - 1), + slug: FernNavigation.V1.Slug(last.slug), + availability: item.availability, + extends: undefined, + }); + }); + } + + channel.requestHeaders?.forEach((property) => { + push( + ApiDefinition.collectTypeDefinitionTreeForObjectProperty(property, types, [ + { type: "meta", value: "request", displayName: "Request" }, + { type: "meta", value: "header", displayName: "Headers" }, + ]), + ); + }); + + channel.queryParameters?.forEach((property) => { + push( + ApiDefinition.collectTypeDefinitionTreeForObjectProperty(property, types, [ + { type: "meta", value: "request", displayName: "Request" }, + { type: "meta", value: "query", displayName: "Query Parameters" }, + ]), + ); + }); + + channel.pathParameters?.forEach((property) => { + push( + ApiDefinition.collectTypeDefinitionTreeForObjectProperty(property, types, [ + { type: "meta", value: "request", displayName: "Request" }, + { type: "meta", value: "path", displayName: "Path Parameters" }, + ]), + ); + }); + + channel.messages.forEach((message) => { + fieldRecords.push({ + ...channelRecord, + type: "websocket-field-v1", + title: message.displayName ?? message.type, + description: toDescription([message.description]), + breadcrumbs: toBreadcrumbs(channelRecord, [ + { type: "meta", value: message.origin, displayName: undefined }, + ]), + slug: FernNavigation.V1.Slug(`${channelRecord.slug}#${message.origin}.${message.type}`), + availability: message.availability, + extends: undefined, + }); + + push( + ApiDefinition.collectTypeDefinitionTree(message.body, types, { + path: [ + { type: "meta", value: message.origin, displayName: undefined }, + { type: "meta", value: message.type, displayName: message.displayName }, + ], + }), + ); + }); + + return fieldRecords; +} diff --git a/packages/ui/fern-docs-search-server/src/algolia/records/generateWebhookRecords.ts b/packages/ui/fern-docs-search-server/src/algolia/records/generateWebhookRecords.ts new file mode 100644 index 0000000000..ee2289deb1 --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/records/generateWebhookRecords.ts @@ -0,0 +1,92 @@ +import { Algolia, ApiDefinition, FernNavigation } from "@fern-api/fdr-sdk"; +import { toBreadcrumbs, toDescription } from "./utils.js"; + +interface GenerateWebhookRecordsOptions { + indexSegmentId: Algolia.IndexSegmentId; + node: FernNavigation.WebhookNode; + breadcrumb: readonly FernNavigation.BreadcrumbItem[]; + webhook: ApiDefinition.WebhookDefinition; + version: Algolia.AlgoliaRecordVersionV3 | undefined; +} + +export function generateWebhookRecord({ + indexSegmentId, + node, + breadcrumb, + webhook, + version, +}: GenerateWebhookRecordsOptions): Algolia.AlgoliaRecord.WebhookV4 { + const webhookRecord: Algolia.AlgoliaRecord.WebhookV4 = { + type: "webhook-v4", + method: webhook.method, + endpointPath: webhook.path.map((part) => ({ type: "literal", value: part })), + title: node.title, + description: toDescription([webhook.description, webhook.payload?.description]), + breadcrumbs: breadcrumb.map((breadcrumb) => ({ + title: breadcrumb.title, + slug: breadcrumb.pointsTo ?? "", + })), + slug: FernNavigation.V1.Slug(node.canonicalSlug ?? node.slug), + version, + indexSegmentId, + }; + + return webhookRecord; +} + +interface GenerateWebhookFieldRecordsOptions { + webhookRecord: Algolia.AlgoliaRecord.WebhookV4; + webhook: ApiDefinition.WebhookDefinition; + types: Record; +} + +export function generateWebhookFieldRecords({ + webhookRecord, + webhook, + types, +}: GenerateWebhookFieldRecordsOptions): Algolia.AlgoliaRecord.WebhookFieldV1[] { + const fieldRecords: Algolia.AlgoliaRecord.WebhookFieldV1[] = []; + + function push(items: ApiDefinition.TypeDefinitionTreeItem[]) { + items.forEach((item) => { + const breadcrumbs = toBreadcrumbs(webhookRecord, item.path); + const last = breadcrumbs[breadcrumbs.length - 1]; + if (!last) { + throw new Error("Breadcrumb should have at least 1"); + } + + fieldRecords.push({ + ...webhookRecord, + type: "webhook-field-v1", + title: last.title, + description: toDescription(item.descriptions), + breadcrumbs: breadcrumbs.slice(0, breadcrumbs.length - 1), + slug: FernNavigation.V1.Slug(last.slug), + availability: item.availability, + extends: undefined, + }); + }); + } + + webhook.headers?.forEach((property) => { + push( + ApiDefinition.collectTypeDefinitionTreeForObjectProperty(property, types, [ + { type: "meta", value: "payload", displayName: "Payload" }, + { type: "meta", value: "header", displayName: "Headers" }, + ]), + ); + }); + + if (webhook.payload) { + push( + ApiDefinition.collectTypeDefinitionTree(webhook.payload.shape, types, { + path: [ + { type: "meta", value: "payload", displayName: "Payload" }, + { type: "meta", value: "body", displayName: undefined }, + ], + }), + ); + } + + return fieldRecords; +} diff --git a/packages/ui/fern-docs-search-server/src/algolia/records/index.ts b/packages/ui/fern-docs-search-server/src/algolia/records/index.ts new file mode 100644 index 0000000000..587b3ae87f --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/records/index.ts @@ -0,0 +1 @@ +export * from "./generateAlgoliaRecords.js"; diff --git a/packages/ui/fern-docs-search-server/src/algolia/records/utils.ts b/packages/ui/fern-docs-search-server/src/algolia/records/utils.ts new file mode 100644 index 0000000000..8f962aed4f --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/records/utils.ts @@ -0,0 +1,112 @@ +import { Algolia, ApiDefinition, FernDocs } from "@fern-api/fdr-sdk"; +import { isNonNullish, titleCase } from "@fern-api/ui-core-utils"; +import { camelCase, upperFirst } from "es-toolkit/string"; +import { UnreachableCaseError } from "ts-essentials"; + +export function convertNameToAnchorPart(name: string | null | undefined): string | undefined { + if (name == null) { + return undefined; + } + return upperFirst(camelCase(name)); +} + +// TODO: improve the title +function toTitle(last: ApiDefinition.KeyPathItem): string { + switch (last.type) { + case "discriminatedUnionVariant": + return last.discriminantDisplayName ?? titleCase(last.discriminantValue); + case "enumValue": + return last.value; + case "extra": + return "Extra Properties"; + case "list": + return "List"; + case "mapValue": + return "Map Value"; + case "meta": + return last.displayName ?? titleCase(last.value); + case "objectProperty": + return last.key; + case "set": + return "Set"; + case "undiscriminatedUnionVariant": + return last.displayName ?? `Variant ${last.idx}`; + } +} + +export function toDescription(descriptions: (FernDocs.MarkdownText | undefined)[]): string | undefined { + descriptions = descriptions.filter(isNonNullish); + const stringDescriptions = descriptions.filter((d): d is string => typeof d === "string"); + + if (stringDescriptions.length !== descriptions.length) { + throw new Error( + "Compiled markdown detected. When generating Algolia records, you must use the unresolved (uncompiled) version of the descriptions", + ); + } + + if (stringDescriptions.length === 0) { + return undefined; + } + + return stringDescriptions.join("\n\n"); +} + +export function toBreadcrumbs( + record: Pick, + path: ApiDefinition.KeyPathItem[], +): Algolia.BreadcrumbsV2 { + const records = [...record.breadcrumbs, { title: record.title, slug: record.slug }]; + + let slug = `${record.slug}#`; + + // don't include the last part of the path + path.forEach((item) => { + const title = toTitle(item); + switch (item.type) { + case "discriminatedUnionVariant": { + // TODO: don't use the display name for discriminated unions (but this must mirror the frontend) + slug += encodeURIComponent(title); + records.push({ title, slug }); + slug += "."; + break; + } + case "enumValue": + slug += encodeURIComponent(item.value); + records.push({ title, slug }); + slug += "."; + break; + case "extra": + slug += "extra"; + records.push({ title, slug }); + slug += "."; + break; + case "list": + case "set": + case "mapValue": + // the frontend currently doesn't append anything for lists or sets (will this cause collisions?) + break; + case "meta": + slug += encodeURIComponent(item.value); + if (item.displayName) { + records.push({ title: item.displayName, slug }); + } + slug += "."; + break; + case "objectProperty": + slug += encodeURIComponent(item.key); + records.push({ title, slug }); + slug += "."; + break; + case "undiscriminatedUnionVariant": + slug += encodeURIComponent(item.displayName ?? item.idx.toString()); + if (item.displayName) { + records.push({ title, slug }); + } + break; + default: + throw new UnreachableCaseError(item); + } + }); + + return records; +} diff --git a/packages/ui/fern-docs-search-server/src/algolia/service.ts b/packages/ui/fern-docs-search-server/src/algolia/service.ts new file mode 100644 index 0000000000..3ca4b36d70 --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/algolia/service.ts @@ -0,0 +1,30 @@ +import { algoliasearch } from "algoliasearch"; +import { once } from "es-toolkit/function"; + +function algoliaAppId(): string { + const algoliaAppId = process.env.ALGOLIA_APP_ID; + if (algoliaAppId == null) { + throw new Error("ALGOLIA_APP_ID must be set"); + } + return algoliaAppId; +} + +export function algoliaApiKey(): string { + const algoliaApiKey = process.env.ALGOLIA_API_KEY; + if (algoliaApiKey == null) { + throw new Error("ALGOLIA_API_KEY must be set"); + } + return algoliaApiKey; +} + +export function algoliaSearchIndex(): string { + const algoliaSearchIndex = process.env.ALGOLIA_SEARCH_INDEX; + if (algoliaSearchIndex == null) { + throw new Error("ALGOLIA_SEARCH_INDEX must be set"); + } + return algoliaSearchIndex; +} + +export const provideAlgoliaClient = once(() => { + return algoliasearch(algoliaAppId(), algoliaApiKey()); +}); diff --git a/packages/ui/fern-docs-search-server/src/index.ts b/packages/ui/fern-docs-search-server/src/index.ts new file mode 100644 index 0000000000..01e223aea4 --- /dev/null +++ b/packages/ui/fern-docs-search-server/src/index.ts @@ -0,0 +1 @@ +export * from "./algolia/index.js"; diff --git a/packages/ui/fern-docs-search-server/tsconfig.json b/packages/ui/fern-docs-search-server/tsconfig.json new file mode 100644 index 0000000000..77ac884a49 --- /dev/null +++ b/packages/ui/fern-docs-search-server/tsconfig.json @@ -0,0 +1,22 @@ +{ + "extends": "@fern-platform/configs/tsconfig/library.json", + "compilerOptions": { + "outDir": "./dist", + "rootDir": "./src", + "moduleResolution": "NodeNext", + "module": "NodeNext", + "types": ["node", "vitest/globals"] + }, + "include": ["./src/**/*"], + "references": [ + { + "path": "../../fdr-sdk/tsconfig.build.json" + }, + { + "path": "../../commons/core-utils" + }, + { + "path": "../fern-docs-mdx" + } + ] +} diff --git a/packages/ui/fern-docs-search-server/vitest.config.ts b/packages/ui/fern-docs-search-server/vitest.config.ts new file mode 100644 index 0000000000..4f772037cd --- /dev/null +++ b/packages/ui/fern-docs-search-server/vitest.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from "vitest/config"; + +export default defineConfig({ + test: { + globals: true, + }, +}); diff --git a/packages/ui/fern-docs-server/src/ApiDefinitionLoader.ts b/packages/ui/fern-docs-server/src/ApiDefinitionLoader.ts index 7cac3d10c5..5a507e815b 100644 --- a/packages/ui/fern-docs-server/src/ApiDefinitionLoader.ts +++ b/packages/ui/fern-docs-server/src/ApiDefinitionLoader.ts @@ -157,19 +157,34 @@ export class ApiDefinitionLoader { }; private resolveHttpCodeSnippets = async (apiDefinition: ApiDefinition): Promise => { - return await Transformer.with({ - EndpointDefinition: async (endpoint) => { - if (!endpoint.examples || endpoint.examples.length === 0) { - return endpoint; - } - - const examples = await Promise.all( - endpoint.examples.map((example) => this.resolveExample(apiDefinition, endpoint, example)), - ); - - return { ...endpoint, examples }; + // Collect all endpoints first, so that we can resolve descriptions in a single batch + const collected: EndpointDefinition[] = []; + Transformer.with({ + EndpointDefinition: (endpoint) => { + collected.push(endpoint); + return endpoint; }, }).apiDefinition(apiDefinition); + + // Resolve example code snippets in parallel + const result = Object.fromEntries( + await Promise.all( + collected.map(async (endpoint) => { + if (endpoint.examples == null || endpoint.examples.length === 0) { + return [endpoint.id, endpoint] as const; + } + + const examples = await Promise.all( + endpoint.examples.map((example) => this.resolveExample(apiDefinition, endpoint, example)), + ); + + return [endpoint.id, { ...endpoint, examples }] as const; + }), + ), + ); + + // reduce the api definition with newly resolved examples + return { ...apiDefinition, endpoints: { ...apiDefinition.endpoints, ...result } }; }; private resolveExample = async ( @@ -238,9 +253,9 @@ export class ApiDefinitionLoader { }; private resolveDescriptions = async (apiDefinition: ApiDefinition): Promise => { - const descriptions = await this.#collectDescriptions(apiDefinition); + const descriptions = this.#collectDescriptions(apiDefinition); const resolvedDescriptions = await this.cache.batchResolveDescriptions(descriptions, this.#serializeMdx); - const transformed = await this.#transformDescriptions(apiDefinition, resolvedDescriptions); + const transformed = this.#transformDescriptions(apiDefinition, resolvedDescriptions); return transformed; }; @@ -251,7 +266,7 @@ export class ApiDefinitionLoader { * @param apiDefinition The API definition to collect descriptions from * @param engine to prefix the key, so that we can differentiate between different serialization engines */ - #collectDescriptions = async (apiDefinition: ApiDefinition): Promise> => { + #collectDescriptions = (apiDefinition: ApiDefinition): Record => { const descriptions: Record = {}; const descriptionCollector = (description: FernDocs.MarkdownText, key: string) => { if (descriptions[`${this.#engine}/${key}`] != null) { @@ -262,19 +277,19 @@ export class ApiDefinitionLoader { descriptions[`${this.#engine}/${key}`] = description; return description; }; - await Transformer.descriptions(descriptionCollector).apiDefinition(apiDefinition); + Transformer.descriptions(descriptionCollector).apiDefinition(apiDefinition); return descriptions; }; - #transformDescriptions = async ( + #transformDescriptions = ( apiDefinition: ApiDefinition, descriptions: Record, - ): Promise => { + ): ApiDefinition => { const transformer = (description: FernDocs.MarkdownText, key: string) => { return descriptions[`${this.#engine}/${key}`] ?? description; }; - return await Transformer.descriptions(transformer).apiDefinition(apiDefinition); + return Transformer.descriptions(transformer).apiDefinition(apiDefinition); }; } diff --git a/packages/ui/local-preview-bundle/.depcheckrc.json b/packages/ui/local-preview-bundle/.depcheckrc.json index ef3f5df4b1..15b55040fa 100644 --- a/packages/ui/local-preview-bundle/.depcheckrc.json +++ b/packages/ui/local-preview-bundle/.depcheckrc.json @@ -13,8 +13,6 @@ "@tailwindcss/forms", "tailwindcss", "styled-jsx", - "lodash-es", - "@types/lodash-es", "node-fetch", "@types/node-fetch", "@emotion/is-prop-valid" diff --git a/packages/ui/local-preview-bundle/next.config.mjs b/packages/ui/local-preview-bundle/next.config.mjs index adeb4ed02e..7ed54a9184 100644 --- a/packages/ui/local-preview-bundle/next.config.mjs +++ b/packages/ui/local-preview-bundle/next.config.mjs @@ -5,7 +5,7 @@ import process from "node:process"; const nextConfig = { transpilePackages: [ "next-mdx-remote", - "lodash-es", + "es-toolkit", /** * Monorepo packages that are not transpiled by default. diff --git a/packages/ui/local-preview-bundle/package.json b/packages/ui/local-preview-bundle/package.json index dd2a572fd1..88aa64e681 100644 --- a/packages/ui/local-preview-bundle/package.json +++ b/packages/ui/local-preview-bundle/package.json @@ -42,7 +42,6 @@ "@fern-ui/ui": "workspace:*", "cssnano": "^6.0.3", "jsonpath": "^1.1.1", - "lodash-es": "^4.17.21", "next": "npm:@fern-api/next@14.2.9-fork.2", "node-fetch": "2.7.0", "postcss-import": "^16.0.1", @@ -56,7 +55,6 @@ "@next/bundle-analyzer": "14.2.9", "@tailwindcss/forms": "^0.5.7", "@tailwindcss/typography": "^0.5.10", - "@types/lodash-es": "^4.17.12", "@types/node": "^18.7.18", "@types/node-fetch": "2.6.9", "@types/react": "^18.0.20", diff --git a/playwright/forward-proxy/nextjs-proxy/test-results/.last-run.json b/playwright/forward-proxy/nextjs-proxy/test-results/.last-run.json deleted file mode 100644 index 544c11fbc3..0000000000 --- a/playwright/forward-proxy/nextjs-proxy/test-results/.last-run.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "status": "failed", - "failedTests": [] -} diff --git a/playwright/forward-proxy/nextjs-proxy/turbo.json b/playwright/forward-proxy/nextjs-proxy/turbo.json new file mode 100644 index 0000000000..513df28458 --- /dev/null +++ b/playwright/forward-proxy/nextjs-proxy/turbo.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://turbo.build/schema.json", + "extends": ["//"], + "tasks": { + "build": { + "outputs": [".next/**", "!.next/cache/**"], + "inputs": ["$TURBO_DEFAULT$", ".env*"] + } + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 60967463f1..c915e34c5a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -58,9 +58,6 @@ importers: '@types/js-yaml': specifier: ^4.0.9 version: 4.0.9 - '@types/lodash-es': - specifier: 4.17.12 - version: 4.17.12 '@types/node': specifier: ^18.7.18 version: 18.19.33 @@ -136,9 +133,6 @@ importers: lint-staged: specifier: ^13.0.3 version: 13.3.0 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 organize-imports-cli: specifier: ^0.10.0 version: 0.10.0 @@ -452,7 +446,7 @@ importers: version: 3.3.2 simple-git: specifier: ^3.24.0 - version: 3.24.0(supports-color@8.1.1) + version: 3.24.0 stylelint: specifier: ^16.1.0 version: 16.5.0(typescript@5.4.3) @@ -628,15 +622,15 @@ importers: '@fern-api/ui-core-utils': specifier: workspace:* version: link:../../core-utils + es-toolkit: + specifier: ^1.24.0 + version: 1.24.0 fastdom: specifier: ^1.0.12 version: 1.0.12 immer: specifier: ^9.0.15 version: 9.0.21 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 react: specifier: ^18.2.0 version: 18.3.1 @@ -647,9 +641,6 @@ importers: '@fern-platform/configs': specifier: workspace:* version: link:../../../configs - '@types/lodash-es': - specifier: ^4.17.12 - version: 4.17.12 '@types/node': specifier: ^18.7.18 version: 18.19.33 @@ -753,7 +744,7 @@ importers: version: 8.57.0 instantsearch.js: specifier: ^4.63.0 - version: 4.68.1(algoliasearch@4.24.0) + version: 4.68.1(algoliasearch@5.8.1) organize-imports-cli: specifier: ^0.10.0 version: 0.10.0 @@ -826,6 +817,9 @@ importers: dayjs: specifier: ^1.11.11 version: 1.11.11 + es-toolkit: + specifier: ^1.24.0 + version: 1.24.0 fast-deep-equal: specifier: ^3.1.3 version: 3.1.3 @@ -838,9 +832,6 @@ importers: js-base64: specifier: 3.7.7 version: 3.7.7 - lodash-es: - specifier: '>=4' - version: 4.17.21 node-fetch: specifier: 2.7.0 version: 2.7.0 @@ -905,12 +896,9 @@ importers: packages/healthchecks: dependencies: - '@algolia/client-search': - specifier: ^4.23.3 - version: 4.23.3 algoliasearch: - specifier: ^4.22.1 - version: 4.23.3 + specifier: ^5.8.1 + version: 5.8.1 console-table-printer: specifier: ^2.12.0 version: 2.12.0 @@ -1031,9 +1019,6 @@ importers: '@types/jest': specifier: ^29.0.3 version: 29.5.12 - '@types/lodash-es': - specifier: ^4.17.12 - version: 4.17.12 '@types/node': specifier: ^18.7.18 version: 18.19.33 @@ -1076,6 +1061,9 @@ importers: '@fern-ui/fdr-utils': specifier: workspace:* version: link:../../commons/fdr-utils + '@fern-ui/fern-docs-mdx': + specifier: workspace:* + version: link:../fern-docs-mdx '@fern-ui/fern-docs-server': specifier: workspace:* version: link:../fern-docs-server @@ -1140,8 +1128,8 @@ importers: specifier: ^0.2.3 version: 0.2.3 algoliasearch: - specifier: ^4.24.0 - version: 4.24.0 + specifier: ^5.8.1 + version: 5.8.1 bezier-easing: specifier: ^2.1.0 version: 2.1.0 @@ -1151,6 +1139,9 @@ importers: colorjs.io: specifier: ^0.5.0 version: 0.5.0 + es-toolkit: + specifier: ^1.24.0 + version: 1.24.0 esbuild: specifier: 0.20.2 version: 0.20.2 @@ -1166,9 +1157,6 @@ importers: github-slugger: specifier: ^2.0.0 version: 2.0.0 - gray-matter: - specifier: ^4.0.3 - version: 4.0.3 hast-util-heading-rank: specifier: ^3.0.0 version: 3.0.0 @@ -1205,9 +1193,6 @@ importers: launchdarkly-js-client-sdk: specifier: ^3.4.0 version: 3.4.0 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 mdast-util-from-markdown: specifier: ^2.0.0 version: 2.0.0 @@ -1254,8 +1239,8 @@ importers: specifier: ^2.0.10 version: 2.0.10(react@18.3.1) react-instantsearch: - specifier: ^7.7.0 - version: 7.8.0(algoliasearch@4.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^7.13.3 + version: 7.13.3(algoliasearch@5.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-medium-image-zoom: specifier: ^5.1.10 version: 5.2.0(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@18.19.33)(ts-node@10.9.2(@swc/core@1.5.7)(@types/node@18.19.33)(typescript@5.4.3)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vitest@1.6.0(@edge-runtime/vm@3.2.0)(@types/node@18.19.33)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.0)(stylus@0.62.0)(terser@5.31.0)) @@ -1377,9 +1362,6 @@ importers: '@types/jsonpath': specifier: ^0.2.4 version: 0.2.4 - '@types/lodash-es': - specifier: ^4.17.12 - version: 4.17.12 '@types/mdast': specifier: ^4.0.3 version: 4.0.3 @@ -1427,7 +1409,7 @@ importers: version: 0.8.0(eslint@8.57.0)(typescript@5.4.3) instantsearch.js: specifier: ^4.63.0 - version: 4.68.1(algoliasearch@4.24.0) + version: 4.68.1(algoliasearch@5.8.1) jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -1482,15 +1464,15 @@ importers: clsx: specifier: ^2.1.1 version: 2.1.1 + es-toolkit: + specifier: ^1.24.0 + version: 1.24.0 hastscript: specifier: ^9.0.0 version: 9.0.0 jotai: specifier: ^2.8.1 version: 2.8.1(@types/react@18.3.3)(react@18.3.1) - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 react: specifier: ^18.3.1 version: 18.3.1 @@ -1516,9 +1498,6 @@ importers: '@types/hast': specifier: ^3.0.4 version: 3.0.4 - '@types/lodash-es': - specifier: ^4.17.12 - version: 4.17.12 '@types/react': specifier: ^18.3.3 version: 18.3.3 @@ -1752,8 +1731,8 @@ importers: packages/ui/docs-bundle: dependencies: '@algolia/requester-fetch': - specifier: ^4.24.0 - version: 4.24.0 + specifier: ^5.8.1 + version: 5.8.1 '@aws-sdk/client-s3': specifier: ^3.335.0 version: 3.572.0 @@ -1790,6 +1769,9 @@ importers: '@fern-ui/fern-docs-edge-config': specifier: workspace:* version: link:../fern-docs-edge-config + '@fern-ui/fern-docs-mdx': + specifier: workspace:* + version: link:../fern-docs-mdx '@fern-ui/fern-docs-server': specifier: workspace:* version: link:../fern-docs-server @@ -1812,14 +1794,17 @@ importers: specifier: ^6.1.0 version: 6.8.0 algoliasearch: - specifier: ^4.24.0 - version: 4.24.0 + specifier: ^5.8.1 + version: 5.8.1 cohere-ai: specifier: ^7.9.5 version: 7.9.5 cssnano: specifier: ^6.0.3 version: 6.1.2(postcss@8.4.31) + es-toolkit: + specifier: ^1.24.0 + version: 1.24.0 esbuild: specifier: 0.20.2 version: 0.20.2 @@ -2183,6 +2168,125 @@ importers: specifier: ^1.5.0 version: 1.6.0(@edge-runtime/vm@3.2.0)(@types/node@18.19.33)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.0)(stylus@0.62.0)(terser@5.31.0) + packages/ui/fern-docs-mdx: + dependencies: + '@fern-api/fdr-sdk': + specifier: workspace:* + version: link:../../fdr-sdk + '@types/hast': + specifier: ^3.0.4 + version: 3.0.4 + github-slugger: + specifier: ^2.0.0 + version: 2.0.0 + gray-matter: + specifier: ^4.0.3 + version: 4.0.3 + mdast-util-from-markdown: + specifier: ^2.0.0 + version: 2.0.0 + mdast-util-mdx: + specifier: ^3.0.0 + version: 3.0.0 + mdast-util-to-hast: + specifier: ^13.1.0 + version: 13.1.0 + mdast-util-to-string: + specifier: ^4.0.0 + version: 4.0.0 + micromark-extension-mdx: + specifier: ^2.1.0 + version: 2.1.0 + pnpm: + specifier: ^9.12.1 + version: 9.12.1 + unist-util-visit: + specifier: ^5.0.0 + version: 5.0.0 + devDependencies: + '@fern-platform/configs': + specifier: workspace:* + version: link:../../configs + '@types/mdast': + specifier: ^4.0.3 + version: 4.0.3 + '@types/node': + specifier: ^18.7.18 + version: 18.19.33 + depcheck: + specifier: ^1.4.3 + version: 1.4.7 + eslint: + specifier: ^8.56.0 + version: 8.57.0 + organize-imports-cli: + specifier: ^0.10.0 + version: 0.10.0 + prettier: + specifier: ^3.3.2 + version: 3.3.2 + stylelint: + specifier: ^16.1.0 + version: 16.5.0(typescript@5.4.3) + typescript: + specifier: 5.4.3 + version: 5.4.3 + vitest: + specifier: ^1.5.0 + version: 1.6.0(@edge-runtime/vm@3.2.0)(@types/node@18.19.33)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.0)(stylus@0.62.0)(terser@5.31.0) + + packages/ui/fern-docs-search-server: + dependencies: + '@fern-api/fdr-sdk': + specifier: workspace:* + version: link:../../fdr-sdk + '@fern-api/ui-core-utils': + specifier: workspace:* + version: link:../../commons/core-utils + '@fern-ui/fern-docs-mdx': + specifier: workspace:* + version: link:../fern-docs-mdx + algoliasearch: + specifier: ^5.8.1 + version: 5.8.1 + es-toolkit: + specifier: ^1.24.0 + version: 1.24.0 + pnpm: + specifier: ^9.12.1 + version: 9.12.1 + ts-essentials: + specifier: ^10.0.1 + version: 10.0.1(typescript@5.4.3) + devDependencies: + '@fern-platform/configs': + specifier: workspace:* + version: link:../../configs + '@types/node': + specifier: ^18.7.18 + version: 18.19.33 + depcheck: + specifier: ^1.4.3 + version: 1.4.7 + eslint: + specifier: ^8.56.0 + version: 8.57.0 + organize-imports-cli: + specifier: ^0.10.0 + version: 0.10.0 + prettier: + specifier: ^3.3.2 + version: 3.3.2 + stylelint: + specifier: ^16.1.0 + version: 16.5.0(typescript@5.4.3) + typescript: + specifier: 5.4.3 + version: 5.4.3 + vitest: + specifier: ^1.5.0 + version: 1.6.0(@edge-runtime/vm@3.2.0)(@types/node@18.19.33)(jsdom@24.0.0)(less@4.2.0)(sass@1.77.0)(stylus@0.62.0)(terser@5.31.0) + packages/ui/fern-docs-server: dependencies: '@fern-api/fdr-sdk': @@ -2396,9 +2500,6 @@ importers: jsonpath: specifier: ^1.1.1 version: 1.1.1 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 next: specifier: npm:@fern-api/next@14.2.9-fork.2 version: '@fern-api/next@14.2.9-fork.2(@babel/core@7.24.5)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0)' @@ -2446,9 +2547,6 @@ importers: '@tailwindcss/typography': specifier: ^0.5.10 version: 0.5.13(tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.5.7)(@types/node@18.19.33)(typescript@5.4.3))) - '@types/lodash-es': - specifier: ^4.17.12 - version: 4.17.12 '@types/node': specifier: ^18.7.18 version: 18.19.33 @@ -2832,7 +2930,7 @@ importers: version: 3.21.0(serverless@3.38.0) simple-git: specifier: ^3.24.0 - version: 3.24.0(supports-color@8.1.1) + version: 3.24.0 tmp-promise: specifier: ^3.0.3 version: 3.0.3 @@ -2903,98 +3001,86 @@ packages: '@adobe/css-tools@4.3.3': resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==} - '@algolia/cache-browser-local-storage@4.23.3': - resolution: {integrity: sha512-vRHXYCpPlTDE7i6UOy2xE03zHF2C8MEFjPN2v7fRbqVpcOvAUQK81x3Kc21xyb5aSIpYCjWCZbYZuz8Glyzyyg==} - '@algolia/cache-browser-local-storage@4.24.0': resolution: {integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==} - '@algolia/cache-common@4.23.3': - resolution: {integrity: sha512-h9XcNI6lxYStaw32pHpB1TMm0RuxphF+Ik4o7tcQiodEdpKK+wKufY6QXtba7t3k8eseirEMVB83uFFF3Nu54A==} - '@algolia/cache-common@4.24.0': resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==} - '@algolia/cache-in-memory@4.23.3': - resolution: {integrity: sha512-yvpbuUXg/+0rbcagxNT7un0eo3czx2Uf0y4eiR4z4SD7SiptwYTpbuS0IHxcLHG3lq22ukx1T6Kjtk/rT+mqNg==} - '@algolia/cache-in-memory@4.24.0': resolution: {integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==} - '@algolia/client-account@4.23.3': - resolution: {integrity: sha512-hpa6S5d7iQmretHHF40QGq6hz0anWEHGlULcTIT9tbUssWUriN9AUXIFQ8Ei4w9azD0hc1rUok9/DeQQobhQMA==} + '@algolia/client-abtesting@5.8.1': + resolution: {integrity: sha512-a2umbOcAPHS8mWRMssNqqkSCJdX7ssGZmj7rjhqCrUXoOwTihU9aUyiHihy8JHV1upJXch3T70ni7/bWrMpR6g==} + engines: {node: '>= 14.0.0'} '@algolia/client-account@4.24.0': resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==} - '@algolia/client-analytics@4.23.3': - resolution: {integrity: sha512-LBsEARGS9cj8VkTAVEZphjxTjMVCci+zIIiRhpFun9jGDUlS1XmhCW7CTrnaWeIuCQS/2iPyRqSy1nXPjcBLRA==} - '@algolia/client-analytics@4.24.0': resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==} - '@algolia/client-common@4.23.3': - resolution: {integrity: sha512-l6EiPxdAlg8CYhroqS5ybfIczsGUIAC47slLPOMDeKSVXYG1n0qGiz4RjAHLw2aD0xzh2EXZ7aRguPfz7UKDKw==} + '@algolia/client-analytics@5.8.1': + resolution: {integrity: sha512-vE+cU1agk79nmBghxe9C7Hr/euj9cIDbk9SiBsnhWA2rsS4yOSSnxdY+GJGOoiJjvS2yQm7cjyxMd5M6q2aAKQ==} + engines: {node: '>= 14.0.0'} '@algolia/client-common@4.24.0': resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==} - '@algolia/client-personalization@4.23.3': - resolution: {integrity: sha512-3E3yF3Ocr1tB/xOZiuC3doHQBQ2zu2MPTYZ0d4lpfWads2WTKG7ZzmGnsHmm63RflvDeLK/UVx7j2b3QuwKQ2g==} + '@algolia/client-common@5.8.1': + resolution: {integrity: sha512-MLX/gipPFEhJPCExsxXf9tnt+kLfWCe9JWRp1adcoVySkhzPxpIeSiWaQaOqyy0TYIgIpdeVx/emlBT9Ni8GFw==} + engines: {node: '>= 14.0.0'} '@algolia/client-personalization@4.24.0': resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==} - '@algolia/client-search@4.23.3': - resolution: {integrity: sha512-P4VAKFHqU0wx9O+q29Q8YVuaowaZ5EM77rxfmGnkHUJggh28useXQdopokgwMeYw2XUht49WX5RcTQ40rZIabw==} + '@algolia/client-personalization@5.8.1': + resolution: {integrity: sha512-QXlX5zKa420vMABJ6V119ig5kqrzF+8jfaXSmzmXoXZXAiOnbOrGyuEHNYsVbOlkupSs6+sz4ECkKdCoVGew+A==} + engines: {node: '>= 14.0.0'} '@algolia/client-search@4.24.0': resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==} + '@algolia/client-search@5.8.1': + resolution: {integrity: sha512-zy3P4fI28GfzKihUw5+L76pEedQxyLDiMsdDYEWghIz8yAnELDatPNEThyWuUk8fD0PeVoCi1M4tr1iz00fOtQ==} + engines: {node: '>= 14.0.0'} + '@algolia/events@4.0.1': resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==} - '@algolia/logger-common@4.23.3': - resolution: {integrity: sha512-y9kBtmJwiZ9ZZ+1Ek66P0M68mHQzKRxkW5kAAXYN/rdzgDN0d2COsViEFufxJ0pb45K4FRcfC7+33YB4BLrZ+g==} - '@algolia/logger-common@4.24.0': resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==} - '@algolia/logger-console@4.23.3': - resolution: {integrity: sha512-8xoiseoWDKuCVnWP8jHthgaeobDLolh00KJAdMe9XPrWPuf1by732jSpgy2BlsLTaT9m32pHI8CRfrOqQzHv3A==} - '@algolia/logger-console@4.24.0': resolution: {integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==} - '@algolia/recommend@4.23.3': - resolution: {integrity: sha512-9fK4nXZF0bFkdcLBRDexsnGzVmu4TSYZqxdpgBW2tEyfuSSY54D4qSRkLmNkrrz4YFvdh2GM1gA8vSsnZPR73w==} - '@algolia/recommend@4.24.0': resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==} - '@algolia/requester-browser-xhr@4.23.3': - resolution: {integrity: sha512-jDWGIQ96BhXbmONAQsasIpTYWslyjkiGu0Quydjlowe+ciqySpiDUrJHERIRfELE5+wFc7hc1Q5hqjGoV7yghw==} + '@algolia/recommend@5.8.1': + resolution: {integrity: sha512-g+x39Uc673ysZ0OjAW7wDtn6qii2XttctSpSuz0GFNKhUUVE/GgjZPbbBG/DgTkWnYmDBYEscsoGZ43yjvcykQ==} + engines: {node: '>= 14.0.0'} '@algolia/requester-browser-xhr@4.24.0': resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==} - '@algolia/requester-common@4.23.3': - resolution: {integrity: sha512-xloIdr/bedtYEGcXCiF2muajyvRhwop4cMZo+K2qzNht0CMzlRkm8YsDdj5IaBhshqfgmBb3rTg4sL4/PpvLYw==} + '@algolia/requester-browser-xhr@5.8.1': + resolution: {integrity: sha512-x0iULVrx5PocaYBqH+G6jyEsEHf7m5FDiZW7CP8AaJdzdCzoUyx7YH6e6TSCNlkFEjwmn8uj05coN8uljCHXTg==} + engines: {node: '>= 14.0.0'} '@algolia/requester-common@4.24.0': resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==} - '@algolia/requester-fetch@4.24.0': - resolution: {integrity: sha512-qgZu2gbKLPEQGMg20UAwmJ1v1qQfRtmKhw6r511iYEeZXBrhuzS9lPf8qOCOUsHud96nYzw39C257Y15mO6rOA==} - - '@algolia/requester-node-http@4.23.3': - resolution: {integrity: sha512-zgu++8Uj03IWDEJM3fuNl34s746JnZOWn1Uz5taV1dFyJhVM/kTNw9Ik7YJWiUNHJQXcaD8IXD1eCb0nq/aByA==} + '@algolia/requester-fetch@5.8.1': + resolution: {integrity: sha512-SRWGrNsKSLNYIDNlVKVkf4wxsm6h57xI+0b8JPm0wUe0ly0jymAgQU2yW2GDzNuXyiPiS7U1oWwaVGs71IT5Pw==} + engines: {node: '>= 14.0.0'} '@algolia/requester-node-http@4.24.0': resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==} - '@algolia/transporter@4.23.3': - resolution: {integrity: sha512-Wjl5gttqnf/gQKJA+dafnD0Y6Yw97yvfY8R9h0dQltX1GXTgNs1zWgvtWW0tHl1EgMdhAyw189uWiZMnL3QebQ==} + '@algolia/requester-node-http@5.8.1': + resolution: {integrity: sha512-pYylr2gBsV68E88bltaVoJHIc3YNIllVmA12d+jefAcutR9ytQM7iP6dXbCYuRqF4CHF32YvZuwvqNI3J4kowA==} + engines: {node: '>= 14.0.0'} '@algolia/transporter@4.24.0': resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==} @@ -7225,6 +7311,9 @@ packages: '@types/google.maps@3.55.8': resolution: {integrity: sha512-aSyvlCRXzF9Jtjqq4zmA24sczKZ0QWJnn4zRrkufCoohHulS6LCf4KsF22eAlnHBuVYwEhQoMXIufUS7kXF5uA==} + '@types/google.maps@3.58.1': + resolution: {integrity: sha512-X9QTSvGJ0nCfMzYOnaVs/k6/4L+7F5uCS+4iUmkLEls6J9S/Phv+m/i3mDeyc49ZBgwab3EFO1HEoBY7k98EGQ==} + '@types/graceful-fs@4.1.9': resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} @@ -8415,12 +8504,18 @@ packages: peerDependencies: algoliasearch: '>= 3.1 < 6' - algoliasearch@4.23.3: - resolution: {integrity: sha512-Le/3YgNvjW9zxIQMRhUHuhiUjAlKY/zsdZpfq4dlLqg6mEm0nL6yk+7f2hDOtLpxsgE4jSzDmvHL7nXdBp5feg==} + algoliasearch-helper@3.22.5: + resolution: {integrity: sha512-lWvhdnc+aKOKx8jyA3bsdEgHzm/sglC4cYdMG4xSQyRiPLJVJtH/IVYZG3Hp6PkTEhQqhyVYkeP9z2IlcHJsWw==} + peerDependencies: + algoliasearch: '>= 3.1 < 6' algoliasearch@4.24.0: resolution: {integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==} + algoliasearch@5.8.1: + resolution: {integrity: sha512-9qYA9fVEhf3d3sGA71hIr0tBJp8+byqirjzvvVvwokc3uTN7J+rnsNcbgxFXlJQrBpfssDG08olVBqCbtZl4Mw==} + engines: {node: '>= 14.0.0'} + ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} @@ -10037,6 +10132,9 @@ packages: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} + es-toolkit@1.24.0: + resolution: {integrity: sha512-nZM+MRSGhKjCdjvqWEFr5Jns6vxoXtBcsl4/cEsGMgsMx8Z2ato4vBTGMUSIQBZJgEdKyNcgGh42yu9xiuNYtQ==} + es5-ext@0.10.64: resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} engines: {node: '>=0.10'} @@ -11368,11 +11466,19 @@ packages: instantsearch-ui-components@0.5.0: resolution: {integrity: sha512-iDdbAbPDyKZOCdOd4aiMkMVJ1WFhc+QU0dM0EIgfZqDYHFuw8XfyLakRK+S7YcQi4bomoqWZ4FiQ/gTFFWo4rQ==} + instantsearch-ui-components@0.9.0: + resolution: {integrity: sha512-ugQ+XdPx3i3Sxu+woRo6tPE0Fz/kWd4KblTUfZD1TZZBsm/8qFvcbg5dVBDvXX9v7ntoyugXCzC/XCZMzrSkig==} + instantsearch.js@4.68.1: resolution: {integrity: sha512-h1TmKTO9K3aid6m/4JlLPDnlun/GDniGALxljrFctNHR7zIRP1SsNJtqcAevID49BVlpFSGqwtrtZ7JgpWQJJg==} peerDependencies: algoliasearch: '>= 3.1 < 6' + instantsearch.js@4.75.0: + resolution: {integrity: sha512-sP2bCNORXb2Bu7IPZdUXmvSOA7JMzZ3iRl1sFsaBu0qP+vs7SclKs9GjkRBxHmJ8GeMfJGGjHuFEIAaiTwEVOA==} + peerDependencies: + algoliasearch: '>= 3.1 < 6' + internal-slot@1.0.7: resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} engines: {node: '>= 0.4'} @@ -12536,6 +12642,9 @@ packages: micromark-extension-mdx-md@2.0.0: resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} + micromark-extension-mdx@2.1.0: + resolution: {integrity: sha512-lxyf9u2Lh3DufwUEDa/DnqNoGz5d3l6RIll1XyHaARQpy5sULXB05Cqh5BqHlVOj49n3LyXOpKG/kSczdkuMwg==} + micromark-extension-mdxjs-esm@3.0.0: resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} @@ -13474,6 +13583,11 @@ packages: resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==} engines: {node: '>=6'} + pnpm@9.12.1: + resolution: {integrity: sha512-5aflKkGDoC1ZMQV/eg2/+dXpzjFh4z+miuOSElt5KCqKikcKUd/IoO2GIhRC6y+1cBmwmQ7ST6tRm/DhvFzPxA==} + engines: {node: '>=18.12'} + hasBin: true + polished@4.3.1: resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} engines: {node: '>=10'} @@ -14036,16 +14150,16 @@ packages: peerDependencies: react: '*' - react-instantsearch-core@7.8.0: - resolution: {integrity: sha512-eNsmvSPnKpEgAXKkaDXY2hAeRwkoitWdBmmQy/ij7bc2zi5TUOFth6jUHVe71XyTDsNsBzXph00HWFNSuuxN2Q==} + react-instantsearch-core@7.13.3: + resolution: {integrity: sha512-eljDLrdHMw8Wbwpqc/5Sj77o+P6NWqlFuBSL0MMbBccXpbt4UfEw5Gf64AtwpO+oYF4L0BKOQpVEm6+poLd9Kw==} peerDependencies: - algoliasearch: '>= 3.1 < 5' + algoliasearch: '>= 3.1 < 6' react: '>= 16.8.0 < 19' - react-instantsearch@7.8.0: - resolution: {integrity: sha512-T5YcJEM0N1//itFTbIUKLorkBDyAVZ3iZTl1+bjxYr3vzZqatBKt6knCn12oTgm2+2ZF8QKktODTWJEwCiGVCQ==} + react-instantsearch@7.13.3: + resolution: {integrity: sha512-an3nuqBELpXQb2fs016YgcosjmAfg24aR5eRxZjYDH+Sa3H/GnhzkYqyaLUpEVwGu5uDJvauHIBGZZKrrQ/lvw==} peerDependencies: - algoliasearch: '>= 3.1 < 5' + algoliasearch: '>= 3.1 < 6' react: '>= 16.8.0 < 19' react-dom: '>= 16.8.0 < 19' @@ -14571,6 +14685,9 @@ packages: search-insights@2.13.0: resolution: {integrity: sha512-Orrsjf9trHHxFRuo9/rzm0KIWmgzE8RMlZMzuhZOJ01Rnz3D0YBAe+V6473t6/H6c7irs6Lt48brULAiRWb3Vw==} + search-insights@2.17.2: + resolution: {integrity: sha512-zFNpOpUO+tY2D85KrxJ+aqwnIfdEGi06UH2+xEb+Bp9Mwznmauqc9djbnBibJO5mpfUPPa8st6Sx65+vbeO45g==} + section-matter@1.0.0: resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} engines: {node: '>=4'} @@ -16487,31 +16604,22 @@ snapshots: '@adobe/css-tools@4.3.3': {} - '@algolia/cache-browser-local-storage@4.23.3': - dependencies: - '@algolia/cache-common': 4.23.3 - '@algolia/cache-browser-local-storage@4.24.0': dependencies: '@algolia/cache-common': 4.24.0 - '@algolia/cache-common@4.23.3': {} - '@algolia/cache-common@4.24.0': {} - '@algolia/cache-in-memory@4.23.3': - dependencies: - '@algolia/cache-common': 4.23.3 - '@algolia/cache-in-memory@4.24.0': dependencies: '@algolia/cache-common': 4.24.0 - '@algolia/client-account@4.23.3': + '@algolia/client-abtesting@5.8.1': dependencies: - '@algolia/client-common': 4.23.3 - '@algolia/client-search': 4.23.3 - '@algolia/transporter': 4.23.3 + '@algolia/client-common': 5.8.1 + '@algolia/requester-browser-xhr': 5.8.1 + '@algolia/requester-fetch': 5.8.1 + '@algolia/requester-node-http': 5.8.1 '@algolia/client-account@4.24.0': dependencies: @@ -16519,13 +16627,6 @@ snapshots: '@algolia/client-search': 4.24.0 '@algolia/transporter': 4.24.0 - '@algolia/client-analytics@4.23.3': - dependencies: - '@algolia/client-common': 4.23.3 - '@algolia/client-search': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 - '@algolia/client-analytics@4.24.0': dependencies: '@algolia/client-common': 4.24.0 @@ -16533,21 +16634,19 @@ snapshots: '@algolia/requester-common': 4.24.0 '@algolia/transporter': 4.24.0 - '@algolia/client-common@4.23.3': + '@algolia/client-analytics@5.8.1': dependencies: - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 + '@algolia/client-common': 5.8.1 + '@algolia/requester-browser-xhr': 5.8.1 + '@algolia/requester-fetch': 5.8.1 + '@algolia/requester-node-http': 5.8.1 '@algolia/client-common@4.24.0': dependencies: '@algolia/requester-common': 4.24.0 '@algolia/transporter': 4.24.0 - '@algolia/client-personalization@4.23.3': - dependencies: - '@algolia/client-common': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 + '@algolia/client-common@5.8.1': {} '@algolia/client-personalization@4.24.0': dependencies: @@ -16555,11 +16654,12 @@ snapshots: '@algolia/requester-common': 4.24.0 '@algolia/transporter': 4.24.0 - '@algolia/client-search@4.23.3': + '@algolia/client-personalization@5.8.1': dependencies: - '@algolia/client-common': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 + '@algolia/client-common': 5.8.1 + '@algolia/requester-browser-xhr': 5.8.1 + '@algolia/requester-fetch': 5.8.1 + '@algolia/requester-node-http': 5.8.1 '@algolia/client-search@4.24.0': dependencies: @@ -16567,34 +16667,21 @@ snapshots: '@algolia/requester-common': 4.24.0 '@algolia/transporter': 4.24.0 - '@algolia/events@4.0.1': {} + '@algolia/client-search@5.8.1': + dependencies: + '@algolia/client-common': 5.8.1 + '@algolia/requester-browser-xhr': 5.8.1 + '@algolia/requester-fetch': 5.8.1 + '@algolia/requester-node-http': 5.8.1 - '@algolia/logger-common@4.23.3': {} + '@algolia/events@4.0.1': {} '@algolia/logger-common@4.24.0': {} - '@algolia/logger-console@4.23.3': - dependencies: - '@algolia/logger-common': 4.23.3 - '@algolia/logger-console@4.24.0': dependencies: '@algolia/logger-common': 4.24.0 - '@algolia/recommend@4.23.3': - dependencies: - '@algolia/cache-browser-local-storage': 4.23.3 - '@algolia/cache-common': 4.23.3 - '@algolia/cache-in-memory': 4.23.3 - '@algolia/client-common': 4.23.3 - '@algolia/client-search': 4.23.3 - '@algolia/logger-common': 4.23.3 - '@algolia/logger-console': 4.23.3 - '@algolia/requester-browser-xhr': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/requester-node-http': 4.23.3 - '@algolia/transporter': 4.23.3 - '@algolia/recommend@4.24.0': dependencies: '@algolia/cache-browser-local-storage': 4.24.0 @@ -16609,35 +16696,34 @@ snapshots: '@algolia/requester-node-http': 4.24.0 '@algolia/transporter': 4.24.0 - '@algolia/requester-browser-xhr@4.23.3': + '@algolia/recommend@5.8.1': dependencies: - '@algolia/requester-common': 4.23.3 + '@algolia/client-common': 5.8.1 + '@algolia/requester-browser-xhr': 5.8.1 + '@algolia/requester-fetch': 5.8.1 + '@algolia/requester-node-http': 5.8.1 '@algolia/requester-browser-xhr@4.24.0': dependencies: '@algolia/requester-common': 4.24.0 - '@algolia/requester-common@4.23.3': {} + '@algolia/requester-browser-xhr@5.8.1': + dependencies: + '@algolia/client-common': 5.8.1 '@algolia/requester-common@4.24.0': {} - '@algolia/requester-fetch@4.24.0': + '@algolia/requester-fetch@5.8.1': dependencies: - '@algolia/requester-common': 4.24.0 - - '@algolia/requester-node-http@4.23.3': - dependencies: - '@algolia/requester-common': 4.23.3 + '@algolia/client-common': 5.8.1 '@algolia/requester-node-http@4.24.0': dependencies: '@algolia/requester-common': 4.24.0 - '@algolia/transporter@4.23.3': + '@algolia/requester-node-http@5.8.1': dependencies: - '@algolia/cache-common': 4.23.3 - '@algolia/logger-common': 4.23.3 - '@algolia/requester-common': 4.23.3 + '@algolia/client-common': 5.8.1 '@algolia/transporter@4.24.0': dependencies: @@ -17576,7 +17662,7 @@ snapshots: '@babel/traverse': 7.24.5 '@babel/types': 7.24.5 convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -18375,7 +18461,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.5 '@babel/parser': 7.24.5 '@babel/types': 7.24.5 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -18390,7 +18476,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.5 '@babel/parser': 7.24.5 '@babel/types': 7.24.5 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -18614,7 +18700,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.1 @@ -18877,7 +18963,7 @@ snapshots: '@humanwhocodes/config-array@0.11.14': dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -19345,6 +19431,12 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.4.15 + '@kwsites/file-exists@1.1.1': + dependencies: + debug: 4.3.4(supports-color@5.5.0) + transitivePeerDependencies: + - supports-color + '@kwsites/file-exists@1.1.1(supports-color@8.1.1)': dependencies: debug: 4.3.4(supports-color@8.1.1) @@ -23577,6 +23669,8 @@ snapshots: '@types/google.maps@3.55.8': {} + '@types/google.maps@3.58.1': {} + '@types/graceful-fs@4.1.9': dependencies: '@types/node': 20.12.12 @@ -23855,7 +23949,7 @@ snapshots: '@typescript-eslint/type-utils': 7.3.1(eslint@8.57.0)(typescript@5.4.3) '@typescript-eslint/utils': 7.3.1(eslint@8.57.0)(typescript@5.4.3) '@typescript-eslint/visitor-keys': 7.3.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -23873,7 +23967,7 @@ snapshots: '@typescript-eslint/types': 7.17.0 '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.4.3) '@typescript-eslint/visitor-keys': 7.17.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 optionalDependencies: typescript: 5.4.3 @@ -23886,7 +23980,7 @@ snapshots: '@typescript-eslint/types': 7.2.0 '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.3) '@typescript-eslint/visitor-keys': 7.2.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 optionalDependencies: typescript: 5.4.3 @@ -23899,7 +23993,7 @@ snapshots: '@typescript-eslint/types': 7.3.1 '@typescript-eslint/typescript-estree': 7.3.1(typescript@5.4.3) '@typescript-eslint/visitor-keys': 7.3.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 optionalDependencies: typescript: 5.4.3 @@ -23952,7 +24046,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 7.3.1(typescript@5.4.3) '@typescript-eslint/utils': 7.3.1(eslint@8.57.0)(typescript@5.4.3) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.3) optionalDependencies: @@ -24035,7 +24129,7 @@ snapshots: dependencies: '@typescript-eslint/types': 7.3.1 '@typescript-eslint/visitor-keys': 7.3.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 @@ -25503,28 +25597,15 @@ snapshots: require-from-string: 2.0.2 uri-js: 4.4.1 - algoliasearch-helper@3.19.0(algoliasearch@4.24.0): + algoliasearch-helper@3.19.0(algoliasearch@5.8.1): + dependencies: + '@algolia/events': 4.0.1 + algoliasearch: 5.8.1 + + algoliasearch-helper@3.22.5(algoliasearch@5.8.1): dependencies: '@algolia/events': 4.0.1 - algoliasearch: 4.24.0 - - algoliasearch@4.23.3: - dependencies: - '@algolia/cache-browser-local-storage': 4.23.3 - '@algolia/cache-common': 4.23.3 - '@algolia/cache-in-memory': 4.23.3 - '@algolia/client-account': 4.23.3 - '@algolia/client-analytics': 4.23.3 - '@algolia/client-common': 4.23.3 - '@algolia/client-personalization': 4.23.3 - '@algolia/client-search': 4.23.3 - '@algolia/logger-common': 4.23.3 - '@algolia/logger-console': 4.23.3 - '@algolia/recommend': 4.23.3 - '@algolia/requester-browser-xhr': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/requester-node-http': 4.23.3 - '@algolia/transporter': 4.23.3 + algoliasearch: 5.8.1 algoliasearch@4.24.0: dependencies: @@ -25544,6 +25625,18 @@ snapshots: '@algolia/requester-node-http': 4.24.0 '@algolia/transporter': 4.24.0 + algoliasearch@5.8.1: + dependencies: + '@algolia/client-abtesting': 5.8.1 + '@algolia/client-analytics': 5.8.1 + '@algolia/client-common': 5.8.1 + '@algolia/client-personalization': 5.8.1 + '@algolia/client-search': 5.8.1 + '@algolia/recommend': 5.8.1 + '@algolia/requester-browser-xhr': 5.8.1 + '@algolia/requester-fetch': 5.8.1 + '@algolia/requester-node-http': 5.8.1 + ansi-colors@4.1.3: {} ansi-escapes@4.3.2: @@ -27115,7 +27208,7 @@ snapshots: callsite: 1.0.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) deps-regex: 0.2.0 findup-sync: 5.0.0 ignore: 5.3.1 @@ -27473,6 +27566,8 @@ snapshots: is-date-object: 1.0.5 is-symbol: 1.0.4 + es-toolkit@1.24.0: {} + es5-ext@0.10.64: dependencies: es6-iterator: 2.0.3 @@ -27893,7 +27988,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -29300,15 +29395,19 @@ snapshots: dependencies: '@babel/runtime': 7.24.5 - instantsearch.js@4.68.1(algoliasearch@4.24.0): + instantsearch-ui-components@0.9.0: + dependencies: + '@babel/runtime': 7.24.5 + + instantsearch.js@4.68.1(algoliasearch@5.8.1): dependencies: '@algolia/events': 4.0.1 '@types/dom-speech-recognition': 0.0.1 '@types/google.maps': 3.55.8 '@types/hogan.js': 3.0.5 '@types/qs': 6.9.14 - algoliasearch: 4.24.0 - algoliasearch-helper: 3.19.0(algoliasearch@4.24.0) + algoliasearch: 5.8.1 + algoliasearch-helper: 3.19.0(algoliasearch@5.8.1) hogan.js: 3.0.2 htm: 3.1.1 instantsearch-ui-components: 0.5.0 @@ -29316,6 +29415,22 @@ snapshots: qs: 6.9.7 search-insights: 2.13.0 + instantsearch.js@4.75.0(algoliasearch@5.8.1): + dependencies: + '@algolia/events': 4.0.1 + '@types/dom-speech-recognition': 0.0.1 + '@types/google.maps': 3.58.1 + '@types/hogan.js': 3.0.5 + '@types/qs': 6.9.14 + algoliasearch: 5.8.1 + algoliasearch-helper: 3.22.5(algoliasearch@5.8.1) + hogan.js: 3.0.2 + htm: 3.1.1 + instantsearch-ui-components: 0.9.0 + preact: 10.21.0 + qs: 6.9.7 + search-insights: 2.17.2 + internal-slot@1.0.7: dependencies: es-errors: 1.3.0 @@ -29330,7 +29445,7 @@ snapshots: dependencies: '@ioredis/commands': 1.2.0 cluster-key-slot: 1.1.2 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -30287,7 +30402,7 @@ snapshots: dependencies: chalk: 5.3.0 commander: 11.0.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) execa: 7.2.0 lilconfig: 2.1.0 listr2: 6.6.1 @@ -30968,6 +31083,14 @@ snapshots: dependencies: micromark-util-types: 2.0.0 + micromark-extension-mdx@2.1.0: + dependencies: + micromark-extension-mdx-expression: 3.0.0 + micromark-extension-mdx-jsx: 3.0.0 + micromark-extension-mdx-md: 2.0.0 + micromark-util-combine-extensions: 2.0.0 + micromark-util-types: 2.0.0 + micromark-extension-mdxjs-esm@3.0.0: dependencies: '@types/estree': 1.0.5 @@ -32096,6 +32219,8 @@ snapshots: transitivePeerDependencies: - typescript + pnpm@9.12.1: {} + polished@4.3.1: dependencies: '@babel/runtime': 7.24.5 @@ -32656,24 +32781,24 @@ snapshots: dependencies: react: 18.3.1 - react-instantsearch-core@7.8.0(algoliasearch@4.24.0)(react@18.3.1): + react-instantsearch-core@7.13.3(algoliasearch@5.8.1)(react@18.3.1): dependencies: '@babel/runtime': 7.24.5 - algoliasearch: 4.24.0 - algoliasearch-helper: 3.19.0(algoliasearch@4.24.0) - instantsearch.js: 4.68.1(algoliasearch@4.24.0) + algoliasearch: 5.8.1 + algoliasearch-helper: 3.22.5(algoliasearch@5.8.1) + instantsearch.js: 4.75.0(algoliasearch@5.8.1) react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) - react-instantsearch@7.8.0(algoliasearch@4.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-instantsearch@7.13.3(algoliasearch@5.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.5 - algoliasearch: 4.24.0 - instantsearch-ui-components: 0.5.0 - instantsearch.js: 4.68.1(algoliasearch@4.24.0) + algoliasearch: 5.8.1 + instantsearch-ui-components: 0.9.0 + instantsearch.js: 4.75.0(algoliasearch@5.8.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-instantsearch-core: 7.8.0(algoliasearch@4.24.0)(react@18.3.1) + react-instantsearch-core: 7.13.3(algoliasearch@5.8.1)(react@18.3.1) react-is@16.13.1: {} @@ -33457,6 +33582,8 @@ snapshots: search-insights@2.13.0: {} + search-insights@2.17.2: {} + section-matter@1.0.0: dependencies: extend-shallow: 2.0.1 @@ -33735,6 +33862,14 @@ snapshots: once: 1.4.0 simple-concat: 1.0.1 + simple-git@3.24.0: + dependencies: + '@kwsites/file-exists': 1.1.1 + '@kwsites/promise-deferred': 1.1.1 + debug: 4.3.4(supports-color@5.5.0) + transitivePeerDependencies: + - supports-color + simple-git@3.24.0(supports-color@8.1.1): dependencies: '@kwsites/file-exists': 1.1.1(supports-color@8.1.1) @@ -34173,7 +34308,7 @@ snapshots: cosmiconfig: 9.0.0(typescript@5.4.3) css-functions-list: 3.2.2 css-tree: 2.3.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) fast-glob: 3.3.2 fastest-levenshtein: 1.0.16 file-entry-cache: 8.0.0 @@ -34808,7 +34943,7 @@ snapshots: bundle-require: 4.1.0(esbuild@0.20.2) cac: 6.7.14 chokidar: 3.6.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) esbuild: 0.20.2 execa: 5.1.1 globby: 11.1.0 @@ -35338,7 +35473,7 @@ snapshots: vite-node@1.6.0(@types/node@18.19.33)(less@4.2.0)(sass@1.77.0)(stylus@0.62.0)(terser@5.31.0): dependencies: cac: 6.7.14 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) pathe: 1.1.2 picocolors: 1.0.0 vite: 5.2.11(@types/node@18.19.33)(less@4.2.0)(sass@1.77.0)(stylus@0.62.0)(terser@5.31.0) @@ -35355,7 +35490,7 @@ snapshots: vite-node@1.6.0(@types/node@22.5.5)(less@4.2.0)(sass@1.77.0)(stylus@0.62.0)(terser@5.31.0): dependencies: cac: 6.7.14 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) pathe: 1.1.2 picocolors: 1.0.0 vite: 5.2.11(@types/node@22.5.5)(less@4.2.0)(sass@1.77.0)(stylus@0.62.0)(terser@5.31.0) @@ -35479,7 +35614,7 @@ snapshots: '@vitest/utils': 1.6.0 acorn-walk: 8.3.2 chai: 4.4.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) execa: 8.0.1 local-pkg: 0.5.0 magic-string: 0.30.10 @@ -35514,7 +35649,7 @@ snapshots: '@vitest/utils': 1.6.0 acorn-walk: 8.3.2 chai: 4.4.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4(supports-color@5.5.0) execa: 8.0.1 local-pkg: 0.5.0 magic-string: 0.30.10 diff --git a/servers/fdr/src/api/generated/api/resources/api/resources/latest/resources/endpoint/types/ErrorResponse.d.ts b/servers/fdr/src/api/generated/api/resources/api/resources/latest/resources/endpoint/types/ErrorResponse.d.ts index 02f6c74e50..674304c70c 100644 --- a/servers/fdr/src/api/generated/api/resources/api/resources/latest/resources/endpoint/types/ErrorResponse.d.ts +++ b/servers/fdr/src/api/generated/api/resources/api/resources/latest/resources/endpoint/types/ErrorResponse.d.ts @@ -5,6 +5,6 @@ import * as FernRegistry from "../../../../../../../index"; export interface ErrorResponse extends FernRegistry.api.latest.WithDescription, FernRegistry.api.latest.WithAvailability { shape: FernRegistry.api.latest.TypeShape | undefined; statusCode: number; - name: string | undefined; + name: string; examples: FernRegistry.api.latest.ErrorExample[] | undefined; } diff --git a/servers/fdr/src/services/algolia/AlgoliaSearchRecordGeneratorV2.ts b/servers/fdr/src/services/algolia/AlgoliaSearchRecordGeneratorV2.ts index 8dbe28351f..8a8502a988 100644 --- a/servers/fdr/src/services/algolia/AlgoliaSearchRecordGeneratorV2.ts +++ b/servers/fdr/src/services/algolia/AlgoliaSearchRecordGeneratorV2.ts @@ -6,11 +6,11 @@ import { FdrAPI, FernNavigation, convertDbAPIDefinitionToRead, - kebabCase, visitDbNavigationTab, } from "@fern-api/fdr-sdk"; import { EndpointPathPart } from "@fern-api/fdr-sdk/src/client/APIV1Read"; import { titleCase, visitDiscriminatedUnion } from "@fern-api/ui-core-utils"; +import { kebabCase } from "lodash-es"; import { v4 as uuid } from "uuid"; import { BreadcrumbsInfo } from "../../api/generated/api"; import { LOGGER } from "../../app/FdrApplication";